/* ==========================================================================
   twenty seconds – Startseite
   ========================================================================== */

/* ── Hero ── */
.hero {
  padding-top: calc(72px + var(--space-5xl));
  padding-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(109, 58, 199, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 0%, rgba(0, 160, 222, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  padding: var(--space-xs) var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-full);
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--space-xl);
}

.hero-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ── Trust Section ── */
.trust-section {
  padding: 0;
}

.trust-section .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* ── Paths Section (Weiche) ── */
.paths-section {
  padding: var(--space-section) 0;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.paths-bridge {
  text-align: center;
  padding: var(--space-xl) var(--space-2xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
}

.paths-bridge strong {
  color: var(--color-dark);
}

/* ── Testimonials Section ── */
.testimonials-section {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ── Blog Teaser Section ── */
.blog-teaser-section {
  padding: var(--space-section) 0;
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-teaser-more {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ── About Compact Section ── */
.about-compact {
  padding: var(--space-section) 0;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.about-compact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(0, 160, 222, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-compact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
}

.about-compact h2 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.about-compact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.about-compact .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  margin-top: var(--space-xl);
}

.about-compact .btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.about-stat-label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
}

/* ── Final CTA ── */
.final-cta {
  padding: var(--space-section) 0;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
}

.animate-in.visible {
  animation: fadeInUp 0.7s var(--ease-out) forwards;
}

.animate-in.delay-1 { animation-delay: 0.1s; }
.animate-in.delay-2 { animation-delay: 0.2s; }
.animate-in.delay-3 { animation-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(72px + var(--space-3xl));
    padding-bottom: var(--space-2xl);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 340px;
  }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-teaser-grid {
    grid-template-columns: 1fr;
  }

  .about-compact-inner {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}
