/* ============================================================
   SECTIONS – Seitenbereichs-spezifische Stile
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  align-items: center;
  padding: 7rem 5% 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(196,94,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--terra);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--warm);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s ease 0.4s both;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--white);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-header .section-sub { margin: 0 auto; }

/* ── QUOTE-ABSCHNITT ── */
.quote-section {
  background: var(--cream);
}

.quote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.75;
  font-style: italic;
  margin: 1.5rem 0;
}

.quote-author {
  color: var(--terra);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ── TÄTIGKEITEN ── */
.activities-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.activities-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── FÜR HELFER ── */
.helfer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.helfer-header {
  text-align: center;
  margin-bottom: 4rem;
}

.helfer-inner .section-sub {
  max-width: 600px;
}

.helfer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── PRICING ── */
.pricing {
  background: var(--navy);
  color: var(--white);
}

.pricing .section-tag   { color: var(--warm); }
.pricing .section-title { color: var(--white); }
.pricing .section-sub   { color: rgba(255,255,255,0.6); }

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header .section-sub { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--terra) 0%, #A34830 100%);
  text-align: center;
  color: var(--white);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.cta-section .section-tag   { color: rgba(255,255,255,0.6); }
.cta-section .section-title { color: var(--white); margin-bottom: 1rem; }

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FAQ ── */
.faq { background: var(--cream); }

.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.faq-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.faq-item summary {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  padding-top: 0.8rem;
}

/* ── REGISTRIERUNG ── */
.register {
  background: var(--white);
}

.register-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
