:root {
    --em-50: #ecfdf5;
    --em-100: #d1fae5;
    --em-200: #a7f3d0;
    --em-300: #6ee7b7;
    --em-400: #34d399;
    --em-500: #10b981;
    --em-600: #059669;
    --em-700: #047857;
    --em-800: #065f46;
    --em-900: #064e3b;
    --bo-800: #7f1d1d;
    --bo-900: #4c0519;
    --sl-50: #f8fafc;
    --sl-100: #f1f5f9;
    --sl-600: #475569;
    --sl-800: #1f2937;
    --white: #fff;
    --shadow-md: 0 6px 20px rgba(6, 95, 70, 0.12);
    --shadow-lg: 0 14px 38px rgba(6, 95, 70, 0.16);
  }
  * {
    box-sizing: border-box;
  }
  html,
  body {
    margin: 0;
    padding: 0;
    font-family:
      system-ui,
      -apple-system,
      Segoe UI,
      Roboto,
      Ubuntu,
      Cantarell,
      Noto Sans,
      sans-serif;
    color: var(--sl-800);
    background: linear-gradient(180deg, var(--em-100), var(--white));
  }
  body {
    padding: 16px 0 16px;
  }
  a {
    color: var(--em-700);
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
  }
  header {
    position: sticky;
    top: 16px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(8px);
    border: 1px solid var(--em-300);
    border-radius: 16px;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .hstack {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .py-3 {
    padding: 12px 16px;
  }
  .logo-link {
    text-decoration: none;
    color: inherit;
  }
  .logo-link:hover {
    text-decoration: none;
  }
  .brand {
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  /* Navigation */
  .nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sl-600);
    transition: background 0.2s, color 0.2s;
  }
  .nav-link:hover {
    background: var(--em-100);
    color: var(--em-800);
    text-decoration: none;
  }
  .nav-link.active {
    background: var(--em-600);
    color: #fff;
  }
  .nav-link.active:hover {
    background: var(--em-700);
  }

  /* Mobile navigation toggle */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
  }
  .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sl-800);
    position: relative;
  }
  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--sl-800);
  }
  .hamburger::before {
    top: -7px;
  }
  .hamburger::after {
    top: 7px;
  }

  @media (max-width: 760px) {
    .header-inner {
      flex-wrap: wrap;
    }
    .brand {
      display: none;
    }
    .nav {
      display: none;
      width: 100%;
      flex-direction: column;
      padding: 8px 0;
      gap: 4px;
    }
    .nav.open {
      display: flex;
    }
    .nav-link {
      width: 100%;
      text-align: center;
    }
    .nav-toggle {
      display: block;
    }
  }

  main {
    padding: 40px 0 48px;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--em-300);
    background: var(--white);
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--em-800);
    font-size: 14px;
  }
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--em-600);
  }
  h1 {
    margin: 12px 0 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    color: var(--em-800);
  }
  .hero-card {
    position: relative;
    display: inline-block;
    margin-top: 28px;
  }
  .glow {
    position: absolute;
    inset: -12px;
    border-radius: 24px;
    filter: blur(24px);
    background: rgba(110, 231, 183, 0.35);
  }
  .card {
    position: relative;
    border: 1px solid var(--em-300);
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-md);
  }
  .center {
    display: flex;
    justify-content: center;
  }
  .section {
    margin-top: 44px;
  }
  .grid {
    display: grid;
    gap: 20px;
  }
  @media (min-width: 860px) {
    .grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  footer {
    border-top: 1px solid var(--em-300);
    margin-top: 40px;
  }
  .footer {
    padding: 18px 0;
    color: #64748b;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
  }
  .logo {
    height: 40px;
    width: auto;
  }
  .logo-hero {
    height: 160px;
    width: auto;
  }
  @media (min-width: 760px) {
    .logo-hero {
      height: 220px;
    }
  }
  .std {
    background-image: linear-gradient(135deg, var(--bo-900), var(--bo-800));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
  }
  .std h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: clamp(22px, 3.4vw, 32px);
  }
  .std .sub {
    color: rgba(255, 255, 255, 0.85);
  }
  .std .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 800;
  }
  .probe {
    background: var(--em-700);
    color: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
  }
  .probe h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: clamp(22px, 3.4vw, 30px);
  }
  .muted {
    color: rgba(255, 255, 255, 0.85);
  }
  .contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .contact-wrap .contact + .contact {
    margin-top: 24px;
  }
  .contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--em-300);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  @media (min-width: 860px) {
    .contact {
      grid-template-columns: 240px 1fr;
    }
  }
  .contact-left {
    background: linear-gradient(180deg, var(--em-700), var(--em-800));
    color: #fff;
    padding: 20px;
  }
  .avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 6px rgba(6, 95, 70, 0.2);
    font-weight: 800;
    font-size: 14px;
  }
  .contact-left h3 {
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.2;
  }
  .contact-left .label {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .contact-subtitle {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
  }
  .contact-right {
    position: relative;
    background: var(--white);
    padding: 20px;
  }
  @media (min-width: 860px) {
    .contact-left {
      padding: 24px;
    }
    .contact-right {
      padding: 24px;
    }
  }
  .blur1,
  .blur2 {
    position: absolute;
    border-radius: 999px;
    filter: blur(32px);
    pointer-events: none;
  }
  .blur1 {
    top: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    background: rgba(167, 243, 208, 0.35);
  }
  .blur2 {
    bottom: -24px;
    left: -24px;
    width: 160px;
    height: 160px;
    background: rgba(167, 243, 208, 0.25);
  }
  .row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .col {
    display: grid;
    gap: 16px;
  }
  .icon {
    width: 20px;
    height: 20px;
    color: var(--em-700);
    margin-top: 2px;
  }
  .field-label {
    font-size: 14px;
    color: #64748b;
    margin: 0;
  }
  .field-text {
    margin: 2px 0 0;
    color: var(--sl-800);
  }

  /* Page content styles */
  .page-header {
    text-align: center;
    padding: 40px 0 20px;
  }
  .page-header h1 {
    margin: 0;
  }
  .content-section {
    background: var(--white);
    border: 1px solid var(--em-300);
    border-radius: 24px;
    padding: 32px;
    margin-top: 24px;
    box-shadow: var(--shadow-md);
  }
  .content-section h2 {
    margin: 0 0 16px;
    color: var(--em-800);
    font-size: 24px;
  }
  .content-section p {
    margin: 0 0 12px;
    line-height: 1.6;
  }
  .content-section p:last-child {
    margin-bottom: 0;
  }

/* ===========================================
   DYNAMIC DESIGN STYLES
   =========================================== */

/* Dekorative Hintergrund-Kreise */
main.container {
  position: relative;
}
main.container::before {
  content: "";
  position: fixed;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(209, 250, 229, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
main.container::after {
  content: "";
  position: fixed;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

/* Hero Sections */
.hero-eko,
.hero-about {
  background: linear-gradient(135deg, var(--em-700) 0%, var(--em-800) 50%, var(--em-900) 100%);
  color: #fff;
  border-radius: 80px 24px 80px 24px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.25);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.hero-eko::before,
.hero-about::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero-eko::after,
.hero-about::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-eko h1,
.hero-about h1 {
  color: #fff;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  position: relative;
}
.hero-eko .subtitle,
.hero-about .subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin: 0;
  position: relative;
}

/* Hero Home (with logo) */
.hero-home {
  background: linear-gradient(135deg, var(--em-700) 0%, var(--em-800) 50%, var(--em-900) 100%);
  color: #fff;
  border-radius: 80px 24px 80px 24px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.25);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-home::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero-home::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-home-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}
.hero-home-content {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-home-content h1 {
  color: #fff;
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 38px);
}
.hero-home-content .subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin: 0;
}
@media (min-width: 600px) {
  .hero-home {
    padding: 48px 40px;
  }
  .hero-home-logo {
    width: 160px;
    height: 160px;
  }
  .hero-home-content {
    text-align: left;
  }
}

/* Intro Box */
.intro-box {
  background: var(--white);
  border: 1px solid var(--em-300);
  border-radius: 32px 12px 32px 12px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}
.intro-box::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--em-100) 0%, transparent 70%);
  border-radius: 50%;
}
.intro-box p {
  margin: 0;
  position: relative;
}

/* Section Title */
.section-title {
  color: var(--em-800);
  font-size: 26px;
  margin: 56px 0 24px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--em-500), var(--em-300));
  border-radius: 2px;
}

/* Ideal Grid & Cards */
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.ideal-card {
  background: linear-gradient(145deg, var(--em-50), #fff);
  border: 1px solid var(--em-200);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ideal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
}
.ideal-card .icon-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--em-500), var(--em-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.ideal-card .icon-circle svg {
  width: 26px;
  height: 26px;
  color: #fff;
}
.ideal-card span {
  font-weight: 500;
  color: var(--sl-800);
}

/* Why Box (Blue) */
.why-box,
.highlight-box {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3b6d9e 100%);
  color: #fff;
  border-radius: 24px 60px 24px 60px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.3);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.why-box::before,
.highlight-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transform: translateY(-50%);
}
.why-box::after,
.highlight-box::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.why-box h2,
.highlight-box h2 {
  margin: 0 0 20px;
  font-size: 24px;
  position: relative;
  color: #fff;
}
.why-box p,
.highlight-box p {
  margin: 0 0 16px;
  opacity: 0.95;
  line-height: 1.7;
  position: relative;
}
.why-box p:last-child,
.highlight-box p:last-child {
  margin-bottom: 0;
}
.why-box ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
  position: relative;
}
.why-box li {
  padding: 10px 0 10px 36px;
  position: relative;
}
.why-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: rgba(110, 231, 183, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee7b7;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
.highlight-quote {
  background: rgba(255,255,255,0.1);
  border-left: 4px solid #6ee7b7;
  padding: 20px 24px;
  margin: 24px 0 0;
  border-radius: 0 20px 20px 0;
  font-style: italic;
  font-size: 18px;
  position: relative;
}

/* Steps Grid & Cards */
.steps-grid {
  display: grid;
  gap: 20px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--em-300);
  border-radius: 20px 40px 20px 40px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.15);
}
.step-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--em-50) 0%, transparent 70%);
  border-radius: 50%;
}
.step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--em-500), var(--em-700));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
}
.step-card h3 {
  margin: 0 0 8px;
  color: var(--em-800);
  font-size: 18px;
}
.step-card p {
  margin: 0;
  color: var(--sl-600);
  line-height: 1.6;
}

/* Content Card (for Über uns) */
.content-card {
  background: var(--white);
  border: 1px solid var(--em-300);
  border-radius: 20px 40px 20px 40px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.15);
}
.content-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--em-50) 0%, transparent 70%);
  border-radius: 50%;
}
.content-card h2 {
  margin: 0 0 16px;
  color: var(--em-800);
  font-size: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-card h2 .icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--em-500), var(--em-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.content-card h2 .icon-circle svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.content-card p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: var(--sl-600);
  position: relative;
}
.content-card p:last-child {
  margin-bottom: 0;
}

/* Info Box */
.info-box {
  background: linear-gradient(145deg, var(--em-100), var(--em-50));
  border: 1px solid var(--em-300);
  border-radius: 40px 16px 40px 16px;
  padding: 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.info-box::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--em-200) 0%, transparent 70%);
  border-radius: 50%;
}
.info-box h3 {
  margin: 0 0 16px;
  color: var(--em-800);
  font-size: 20px;
  position: relative;
}
.info-box p {
  margin: 0 0 16px;
  line-height: 1.6;
  position: relative;
}
.info-box ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  position: relative;
}
.info-box li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
}
.info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--em-400), var(--em-600));
  border-radius: 50%;
}

/* Probe Info Pill */
.probe-info {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--em-600), var(--em-700));
  color: #fff;
  border-radius: 50px;
  padding: 20px 28px;
  margin-top: 16px;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
}
.probe-info svg {
  width: 36px;
  height: 36px;
  min-width: 36px;
}
.probe-info div {
  font-weight: 600;
  font-size: 17px;
}
.probe-info small {
  display: block;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 2px;
  font-size: 14px;
}

/* Unique Badge */
.unique-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--em-300), var(--em-400));
  color: var(--em-900);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
}

/* Goals Grid */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.goal-item {
  background: var(--white);
  border: 1px solid var(--em-300);
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.goal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.18);
}
.goal-item .goal-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, var(--em-100), var(--em-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}
.goal-item .goal-icon svg {
  width: 30px;
  height: 30px;
  color: var(--em-700);
}
.goal-item p {
  margin: 0;
  font-weight: 500;
  color: var(--sl-800);
  font-size: 15px;
  line-height: 1.4;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--em-600) 0%, var(--em-700) 50%, var(--em-800) 100%);
  color: #fff;
  border-radius: 60px 24px 60px 24px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.3);
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-box h2 {
  margin: 0 0 16px;
  font-size: 28px;
  position: relative;
  color: #fff;
}
.cta-box p {
  margin: 0 0 28px;
  opacity: 0.95;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
}
.cta-box .btn {
  display: inline-block;
  background: #fff;
  color: var(--em-700);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  position: relative;
}
.cta-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* Dynamic Content Section */
.content-section.dynamic {
  border-radius: 16px 40px 16px 40px;
  position: relative;
  overflow: hidden;
}
.content-section.dynamic::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--em-100) 0%, transparent 70%);
  border-radius: 50%;
}
.content-section.dynamic h2 {
  font-size: 22px;
  position: relative;
}
.content-section.dynamic p {
  position: relative;
}

/* Final Text / Slogan */
.final-text,
.slogan {
  margin-top: 32px;
  text-align: center;
  color: var(--sl-600);
  line-height: 1.7;
  font-size: 17px;
  padding: 24px;
  background: linear-gradient(145deg, var(--em-50), #fff);
  border-radius: 24px;
  border: 1px dashed var(--em-300);
}
.slogan {
  font-size: 20px;
  font-weight: 700;
  color: var(--em-800);
}

/* Termine Grid & Cards */
.termine-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.termin-card {
  background: var(--white);
  border: 1px solid var(--em-300);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.termin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(5, 150, 105, 0.15);
}
.termin-card.highlight {
  background: linear-gradient(135deg, var(--em-50), var(--em-100));
  border-color: var(--em-400);
}
.termin-card.highlight .termin-date {
  background: linear-gradient(135deg, var(--em-600), var(--em-800));
}

.termin-date {
  width: 70px;
  min-width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--em-500), var(--em-700));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.termin-date .day {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}
.termin-date .month {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.termin-info {
  flex: 1;
}
.termin-info h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--em-800);
}
.termin-info p {
  margin: 0;
  font-size: 14px;
  color: var(--sl-600);
}

@media (max-width: 500px) {
  .termin-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .termin-date {
    width: 80px;
    height: 80px;
  }
}

/* ========================================
   Sponsoring Page Styles
   ======================================== */

/* Sponsor Package Cards */
.sponsor-package {
  background: var(--white);
  border: 2px solid var(--em-300);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sponsor-package:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.18);
}
.sponsor-package::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
}
.sponsor-package.bronze {
  border-color: #cd7f32;
}
.sponsor-package.bronze::before {
  background: #cd7f32;
}
.sponsor-package.bronze .package-badge {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
}
.sponsor-package.silber {
  border-color: #c0c0c0;
}
.sponsor-package.silber::before {
  background: #c0c0c0;
}
.sponsor-package.silber .package-badge {
  background: linear-gradient(135deg, #c0c0c0, #808080);
}
.sponsor-package.gold {
  border-color: #ffd700;
}
.sponsor-package.gold::before {
  background: #ffd700;
}
.sponsor-package.gold .package-badge {
  background: linear-gradient(135deg, #ffd700, #daa520);
}
.sponsor-package.platin {
  border-color: #e5e4e2;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}
.sponsor-package.platin::before {
  background: linear-gradient(135deg, #e5e4e2, #a8a9ad);
}
.sponsor-package.platin .package-badge {
  background: linear-gradient(135deg, #e5e4e2, #a8a9ad);
  color: #333;
}

.package-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.package-badge {
  padding: 8px 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.package-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--em-800);
}
.package-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--sl-600);
}
.package-subtitle {
  font-size: 14px;
  color: var(--sl-600);
  margin-bottom: 20px;
  font-style: italic;
}
.package-section {
  margin-bottom: 20px;
}
.package-section h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--em-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.package-section h4 svg {
  width: 18px;
  height: 18px;
}
.package-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.package-section li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--sl-800);
  line-height: 1.5;
}
.package-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--em-600);
  font-weight: bold;
}

/* Need Items */
.need-item {
  background: linear-gradient(145deg, var(--em-50), #fff);
  border: 1px solid var(--em-200);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  transition: transform 0.2s;
}
.need-item:hover {
  transform: translateX(4px);
}
.need-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--em-500), var(--em-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.need-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.need-item p {
  margin: 0;
  color: var(--sl-800);
  line-height: 1.6;
}

/* Benefit Grid & Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--em-300);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.18);
}
.benefit-card .benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--em-100), var(--em-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-card .benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--em-700);
}
.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--em-800);
}
.benefit-card p {
  margin: 0;
  font-size: 14px;
  color: var(--sl-600);
  line-height: 1.5;
}

/* Impact List */
.impact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.impact-item {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.impact-item svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: #6ee7b7;
}
.impact-item span {
  color: #fff;
  line-height: 1.5;
}

/* Promise Grid */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(145deg, var(--em-50), #fff);
  border: 1px solid var(--em-200);
  border-radius: 16px;
}
.promise-item svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--em-600);
}
.promise-item span {
  font-weight: 500;
  color: var(--sl-800);
}

/* Group Image Frame */
.group-image-frame {
  margin: 32px 0;
  background: var(--white);
  border: 1px solid var(--em-300);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.group-image-frame::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--em-100) 0%, transparent 70%);
  border-radius: 50%;
}
.group-image-frame::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--em-200) 0%, transparent 70%);
  border-radius: 50%;
}
.group-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
}
.image-caption {
  text-align: center;
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--sl-600);
  font-style: italic;
  position: relative;
  z-index: 1;
}
