/* ==========================================================================
   enkelfähig e.V. — Shared Stylesheet
   Dark green brand, angular design (no border-radius on buttons)
   ========================================================================== */


/* ==========================================================================
   1. Google Fonts Import
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');


/* ==========================================================================
   2. CSS Reset + Base
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0C4137;
  color: #FFFFFF;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05em;
}


/* ==========================================================================
   3. CSS Custom Properties
   ========================================================================== */

:root {
  --c-primary: #0C4137;
  --c-dark: #071E14;
  --c-rebel: #E80B60;
  --c-neon: #95FF4D;
  --c-white: #FFFFFF;
  --c-offwhite: #F4F4F0;
  --c-text-dim: rgba(255,255,255,0.65);
  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: 300ms ease;
  --radius: 0px;
}


/* ==========================================================================
   4. Layout Utilities
   ========================================================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: var(--c-dark);
}

.section--offwhite {
  background: var(--c-offwhite);
  color: #071E14;
}


/* ==========================================================================
   5. Typography
   ========================================================================== */

.h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.h4 {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.text-neon {
  color: var(--c-neon);
}

.text-rebel {
  color: var(--c-rebel);
}

.text-dim {
  color: var(--c-text-dim);
}


/* ==========================================================================
   6. Buttons — NO border-radius
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: 200ms ease;
  white-space: nowrap;
  border-radius: 0;
}

.btn-neon {
  background: #95FF4D;
  color: #0C4137;
}

.btn-neon:hover {
  background: #b0ff70;
}

.btn-outline {
  border: 1.5px solid #95FF4D;
  background: transparent;
  color: white;
}

.btn-outline:hover {
  background: rgba(149, 255, 77, 0.1);
}

.btn-rebel {
  background: #E80B60;
  color: white;
}

.btn-rebel:hover {
  background: #ff1a75;
}

.btn-dark {
  background: #071E14;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  border-color: rgba(149, 255, 77, 0.4);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 15px;
}


/* ==========================================================================
   7. Badge Variants
   ========================================================================== */

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
}

.badge-neon {
  background: rgba(149, 255, 77, 0.15);
  color: #95FF4D;
  border: 1px solid rgba(149, 255, 77, 0.3);
}

.badge-rebel {
  background: rgba(232, 11, 96, 0.15);
  color: #E80B60;
  border: 1px solid rgba(232, 11, 96, 0.3);
}

.badge-white {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dark {
  background: rgba(7, 30, 20, 0.6);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


/* ==========================================================================
   8. Section Label
   ========================================================================== */

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-neon);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--c-neon);
  flex-shrink: 0;
}


/* ==========================================================================
   9. Ghost Number Decoration
   ========================================================================== */

.ghost-number {
  font-size: clamp(120px, 15vw, 200px);
  font-weight: 700;
  line-height: 1;
  color: rgba(149, 255, 77, 0.06);
  position: absolute;
  top: -0.2em;
  left: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}


/* ==========================================================================
   10. Scroll Animation
   ========================================================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] {
  transition-delay: 100ms;
}

[data-animate][data-delay="2"] {
  transition-delay: 200ms;
}

[data-animate][data-delay="3"] {
  transition-delay: 300ms;
}

[data-animate][data-delay="4"] {
  transition-delay: 400ms;
}


/* ==========================================================================
   11. Navigation Styles
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 300ms ease;
}

.nav.scrolled {
  background: rgba(7, 30, 20, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(149, 255, 77, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.nav__logo img {
  height: 34px;
  width: auto;
}

.nav__links-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__links,
.nav__events {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  list-style: none;
}

.nav__links a,
.nav__events a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 300ms ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: #95FF4D;
}

.nav__events-sep {
  width: 1px;
  height: 18px;
  background: rgba(149, 255, 77, 0.25);
  margin: 0 10px;
  flex-shrink: 0;
}

.nav__events-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E80B60;
  opacity: 0.9;
  white-space: nowrap;
}

.nav__event-link {
  color: rgba(255, 255, 255, 0.75) !important;
}

.nav__event-link::before {
  content: '●';
  font-size: 6px;
  color: #E80B60;
  margin-right: 5px;
  vertical-align: middle;
}

.nav__event-link:hover {
  color: #95FF4D !important;
}

@media (max-width: 1000px) {
  .nav__links-wrap {
    display: none;
  }
}

.nav__cta {
  display: none;
}

@media (min-width: 1001px) {
  .nav__cta {
    display: inline-flex;
  }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}

@media (max-width: 1000px) {
  .nav__burger {
    display: flex;
  }
}

.nav__links-wrap.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(7, 30, 20, 0.98);
  padding: 24px clamp(20px, 5vw, 80px);
  gap: 16px;
  border-bottom: 1px solid rgba(149, 255, 77, 0.12);
}

.nav__links-wrap.open .nav__links,
.nav__links-wrap.open .nav__events {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.nav__links-wrap.open .nav__events-sep {
  width: 100%;
  height: 1px;
  margin: 4px 0;
}


/* ==========================================================================
   12. Footer Styles
   ========================================================================== */

.site-footer {
  background: #071E14;
  border-top: 1px solid rgba(149, 255, 77, 0.12);
  padding: clamp(40px, 5vw, 64px) 0 clamp(20px, 3vw, 32px);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.site-footer__brand img {
  height: 28px;
  margin-bottom: 16px;
}

.site-footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.site-footer__social {
  display: flex;
  gap: 12px;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(149, 255, 77, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms ease;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__social-link:hover {
  background: rgba(149, 255, 77, 0.1);
  border-color: #95FF4D;
  color: #fff;
}

.site-footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #95FF4D;
  margin-bottom: 16px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.site-footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 300ms;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__legal {
  display: flex;
  gap: 20px;
}

.site-footer__legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 860px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   13. Page Hero (Inner Pages)
   ========================================================================== */

.page-hero {
  background: #071E14;
  padding: 130px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-right: 200px solid #95FF4D;
  border-top: 200px solid transparent;
  z-index: 1;
  opacity: 0.7;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #95FF4D;
}

.page-hero__kicker-line {
  width: 32px;
  height: 2px;
  background: #95FF4D;
  flex-shrink: 0;
}

.page-hero__headline {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.65;
  margin-top: 20px;
}


/* ==========================================================================
   14. Hero Section (Homepage)
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #071E14;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 30, 20, 0.95) 55%, rgba(12, 65, 55, 0.7) 100%);
  z-index: 1;
}

.hero__diagonal {
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  background: #0C4137;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-right: 160px solid #95FF4D;
  border-top: 160px solid transparent;
  z-index: 2;
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #95FF4D;
}

.hero__kicker-line {
  width: 40px;
  height: 2px;
  background: #95FF4D;
}

.hero__headline {
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(149, 255, 77, 0.6), transparent);
}


/* ==========================================================================
   15. Manifesto Ticker
   ========================================================================== */

.manifesto-ticker {
  background: var(--c-neon);
  color: var(--c-dark);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.manifesto-ticker__track {
  display: inline-flex;
  gap: 0;
  animation: ticker 40s linear infinite;
}

.manifesto-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto-ticker__item::after {
  content: '◆';
  margin-left: 24px;
  color: var(--c-primary);
  opacity: 0.4;
  font-size: 8px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.manifesto-ticker:hover .manifesto-ticker__track {
  animation-play-state: paused;
}


/* ==========================================================================
   16. Mission Section
   ========================================================================== */

.mission {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.mission__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.mission__stat {
  background: rgba(149, 255, 77, 0.06);
  padding: 24px;
  border-left: 2px solid var(--c-neon);
}

.mission__stat-number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--c-neon);
  line-height: 1;
}

.mission__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.mission__headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.mission__body {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

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


/* ==========================================================================
   17. Event Cards
   ========================================================================== */

.events-section {
  padding: clamp(80px, 8vw, 120px) 0;
  background: var(--c-dark);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.event-card {
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  border-top: 2px solid transparent;
  transition: border-color 300ms, background 300ms;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-top-color: var(--c-neon);
}

.event-card--featured {
  border-top-color: var(--c-rebel);
}

.event-card__header {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.event-card__date { }

.event-card__day {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-neon);
}

.event-card__month {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.event-card__format {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
}

.event-card__body {
  padding: 20px 24px;
  flex: 1;
}

.event-card__title {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  margin: 12px 0 10px;
}

.event-card__teaser {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.event-card__location {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.event-card__cta {
  padding: 16px 24px 24px;
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


/* ==========================================================================
   18. Leistungen / Pillars
   ========================================================================== */

.pillars {
  padding: clamp(80px, 8vw, 120px) 0;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(24px, 3vw, 40px);
  border-top: 2px solid rgba(149, 255, 77, 0.2);
  transition: border-color 300ms, background 300ms;
}

.pillar-card:hover {
  border-top-color: var(--c-neon);
  background: rgba(149, 255, 77, 0.06);
}

.pillar-card__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-neon);
  margin-bottom: 20px;
  opacity: 0.7;
}

.pillar-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.pillar-card__title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-card__body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.pillar-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-neon);
  text-decoration: none;
  margin-top: 20px;
  text-transform: uppercase;
}

.pillar-card__link:hover {
  gap: 10px;
}

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

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


/* ==========================================================================
   19. Team Cards
   ========================================================================== */

.team-card {
  background: rgba(255, 255, 255, 0.04);
  transition: background 300ms;
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.team-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(7, 30, 20, 0.5);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  filter: grayscale(20%);
}

.team-card:hover .team-card__photo img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.team-card__initial-photo {
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__initial {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--c-neon);
}

.team-card__info {
  min-width: 0;
  overflow-wrap: break-word;
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.team-card__vereinsrolle {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-neon);
  margin-bottom: 3px;
}

.team-card__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  margin-bottom: 12px;
  height: calc(3 * 1.4em); /* 3 Zeilen, damit E-Mail-Adressen auf gleicher Höhe */
  overflow: hidden;
}

.team-card__email {
  overflow-wrap: anywhere;
  font-size: 12px;
  color: var(--c-neon);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 200ms;
  margin-top: auto;
}

.team-card__email:hover {
  opacity: 1;
}

.team-section {
  padding: clamp(80px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.team .signet-deco {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(45%, 420px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}


/* ==========================================================================
   20. Quote Cards — FIXED (NO overflow pseudo-element)
   ========================================================================== */

.quote-card {
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(24px, 3vw, 36px);
  border-top: 2px solid #95FF4D;
  display: flex;
  flex-direction: column;
}

.quote-card__quote-mark {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 0.8;
  color: #95FF4D;
  margin-bottom: 10px;
  opacity: 0.8;
}

.quote-card__text {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.quote-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(149, 255, 77, 0.1);
}

.quote-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card__name {
  font-size: 14px;
  font-weight: 600;
}

.quote-card__role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

@media (max-width: 860px) {
  .quotes-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


/* ==========================================================================
   21. Logo Marquee
   ========================================================================== */

.logo-marquee {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.logo-marquee__item {
  flex-shrink: 0;
}

.logo-marquee__item img {
  filter: brightness(0) invert(1);
  opacity: 0.4;
  width: 100px;
  height: 44px;
  object-fit: contain;
  transition: opacity 300ms;
}

.logo-marquee__item img:hover {
  opacity: 0.85;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}


/* ==========================================================================
   22. Beyond Economy Teaser / CTA Banner
   ========================================================================== */

.be-banner {
  background: var(--c-dark);
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.be-banner::before {
  content: 'BE';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 700;
  line-height: 1;
  color: rgba(149, 255, 77, 0.04);
  pointer-events: none;
  user-select: none;
}

.be-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.be-banner__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rebel);
  margin-bottom: 12px;
}

.be-banner__title {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.be-banner__sub {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.65;
}

.be-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .be-banner__inner {
    grid-template-columns: 1fr;
  }
  .be-banner__actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}


/* ==========================================================================
   23. Newsletter Section
   ========================================================================== */

.newsletter {
  padding: clamp(64px, 8vw, 100px) 0;
  background: rgba(149, 255, 77, 0.06);
  border-top: 1px solid rgba(149, 255, 77, 0.15);
  border-bottom: 1px solid rgba(149, 255, 77, 0.15);
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.newsletter__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  border-radius: 0;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter__input:focus {
  border-color: rgba(149, 255, 77, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter__btn {
  background: #95FF4D;
  color: #0C4137;
  border: none;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms;
  border-radius: 0;
}

.newsletter__btn:hover {
  background: #b0ff70;
}

@media (max-width: 480px) {
  .newsletter__form {
    flex-direction: column;
  }
  .newsletter__input {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
  }
}


/* ==========================================================================
   24. Diagonal Section Transitions
   ========================================================================== */

.section-diagonal {
  position: relative;
}

.section-diagonal::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
  z-index: 1;
}


/* ==========================================================================
   25. FAQ / Accordion
   ========================================================================== */

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 200ms;
  font-family: inherit;
}

.faq-item__trigger:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(149, 255, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-neon);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 300ms;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}

.faq-item.open .faq-item__body {
  max-height: 500px;
}

.faq-item__body-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}


/* ==========================================================================
   26. Past Events / Archive Cards
   ========================================================================== */

.past-events {
  padding: clamp(64px, 7vw, 100px) 0;
}

.past-events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.past-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.06);
  transition: border-color 300ms, background 300ms;
}

.past-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--c-neon);
}

.past-card__year {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}

.past-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.past-card__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .past-events__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .past-events__grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   27. Countdown Styles
   ========================================================================== */

.countdown {
  display: flex;
  gap: clamp(12px, 2vw, 32px);
  justify-content: center;
  margin: 32px 0;
}

.countdown__unit {
  text-align: center;
}

.countdown__value {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-neon);
  min-width: 2ch;
  display: block;
}

.countdown__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}

.countdown__sep {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: rgba(149, 255, 77, 0.3);
  align-self: flex-start;
  padding-top: 8px;
}


/* ==========================================================================
   28. Membership Cards
   ========================================================================== */

.membership-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.membership-card {
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(24px, 3vw, 36px);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  transition: 300ms ease;
}

.membership-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-top-color: var(--c-neon);
}

.membership-card--featured {
  border-top-color: var(--c-neon);
  background: rgba(149, 255, 77, 0.06);
}

.membership-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.membership-card__title {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  margin-bottom: 10px;
}

.membership-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .membership-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .membership-cards {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   29. News / Blog Cards
   ========================================================================== */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.news-card {
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  border-top: 2px solid transparent;
  transition: 300ms ease;
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-top-color: var(--c-neon);
}

.news-card__image {
  aspect-ratio: 16/9;
  background: rgba(7, 30, 20, 0.5);
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms;
}

.news-card:hover .news-card__image img {
  transform: scale(1.04);
}

.news-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.news-card__date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.news-card__title {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-card__teaser {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.news-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-neon);
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


/* ==========================================================================
   30. Leistungen Detail Rows
   ========================================================================== */

.leistung-row {
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.leistung-row__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.leistung-row__inner.reverse {
  direction: rtl;
}

.leistung-row__inner.reverse > * {
  direction: ltr;
}

.leistung-row__visual {
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border-top: 2px solid var(--c-neon);
}

.leistung-row__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-neon);
  margin-bottom: 12px;
}

.leistung-row__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.leistung-row__body {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}

.leistung-row__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.leistung-row__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 20px;
  position: relative;
}

.leistung-row__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-neon);
}

@media (max-width: 768px) {
  .leistung-row__inner,
  .leistung-row__inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}


/* ==========================================================================
   31. Founders / Gründungskreis Grid
   ========================================================================== */

.founders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 48px;
}

@media (max-width: 1000px) {
  .founders-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   32. FWL Rating Callout
   ========================================================================== */

.fwl-callout {
  background: var(--c-dark);
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid rgba(149, 255, 77, 0.15);
  border-bottom: 1px solid rgba(149, 255, 77, 0.15);
}

.fwl-callout__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.fwl-callout__badge {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  color: var(--c-neon);
  line-height: 1;
  letter-spacing: -0.04em;
}

.fwl-callout__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fwl-callout__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.fwl-callout__body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .fwl-callout__inner {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   33. Steps / Process
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  position: relative;
}

.step__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-neon);
  margin-bottom: 12px;
}

.step__line {
  width: 32px;
  height: 2px;
  background: var(--c-neon);
  margin-bottom: 16px;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

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


/* ==========================================================================
   34. Allianz-Specific Styles
   ========================================================================== */

.allianz-hero {
  background: #071E14;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.allianz-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-right: 400px solid rgba(232, 11, 96, 0.12);
  border-bottom: 300px solid transparent;
  z-index: 0;
}

.allianz-hero__content {
  position: relative;
  z-index: 1;
}

.allianz-logo-area {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.allianz-logo-area__x {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.allianz-logo-placeholder {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.allianz-logo-placeholder span {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}

.allianz-external {
  text-align: center;
  margin: 48px 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.allianz-external__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.allianz-ticket-cta {
  background: var(--c-rebel);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}

.allianz-ticket-cta__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}

.allianz-ticket-cta__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}


/* ==========================================================================
   35. Utility Classes
   ========================================================================== */

.text-center {
  text-align: center;
}

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.hidden {
  display: none;
}

.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;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }


/* ==========================================================================
   35. Mobile-Optimierung: Overrides fuer Inline-Styles
   (Inline-Styles schlagen normale Media Queries, daher !important)
   ========================================================================== */

/* Horizontales Scrollen verhindern (Ghost-Numbers, Deko-Elemente) */
html, body {
  overflow-x: clip;
}

/* Mehrspaltige Inline-Grids auf kleinen Screens einspaltig stapeln */
@media (max-width: 860px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:1fr 1.2fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:5fr 7fr"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  /* Inhalt + Button nebeneinander -> untereinander (z.B. FWL-Callout) */
  [style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
  }

  /* Newsletter: Eingabefeld + Button duerfen umbrechen */
  [style*="display:flex;gap:8px;width:100%"] {
    flex-wrap: wrap;
  }
}

@media (max-width: 540px) {
  /* Formular-Tabs (Mitglieder) untereinander statt nebeneinander */
  [style*="display:flex;gap:2px"] {
    flex-direction: column;
  }
}
