/* ── OUTFIT FONT (lokal) ── */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: fallback;
  src: url('fonts/outfit.ttf') format('truetype');
}

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button, input, select, textarea { font-family: inherit; }

:root {
  --green: #00b85f;
  --green-dark: #009a4f;
  --green-light: #eaf8f1;
  --text: #111827;
  --text2: #6b7280;
  --text3: #757575;
  --green-text: #00703a;
  --bg: #ffffff;
  --bg2: #f8f9fc;
  --border: #e5e7eb;
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-size: 1.75rem; letter-spacing: -0.04em;
  text-decoration: none; line-height: 1; cursor: default;
}
.logo:hover { text-decoration: none; }
.logo .logo-ever { font-weight: 300; color: var(--text2); }
.logo .logo-fan  { font-weight: 900; color: var(--green); }
.logo:hover .logo-ever { color: var(--text2); }
.logo:hover .logo-fan  { color: var(--green); }
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text2);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
nav a.nav-cta {
  background: var(--text); color: #fff;
  padding: 9px 20px; border-radius: 7px;
  font-weight: 600; font-size: 0.88rem;
  text-decoration: none; transition: background 0.2s;
}
nav a.nav-cta:hover { background: #374151; }
.nav-back {
  font-size: 0.88rem; font-weight: 500; color: var(--text2);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color 0.15s;
}
.nav-back:hover { color: var(--text); }
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
}

/* ── FOOTER ── */
footer {
  background: var(--text); color: rgba(255,255,255,0.5);
  padding: 36px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-size: 1.5rem; letter-spacing: -0.04em; line-height: 1;
}
.footer-logo .logo-ever { font-weight: 300; color: rgba(255,255,255,0.55); }
.footer-logo .logo-fan  { font-weight: 900; color: var(--green); }
.footer-links {
  display: flex; gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.4); font-size: 0.82rem;
  text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 0.82rem; }
@media (max-width: 768px) {
  .footer-inner { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ── SECTIONS (shared) ── */
section { padding: 88px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-kicker {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.7px;
  line-height: 1.2; margin-bottom: 16px; color: var(--text);
}
.section-intro {
  font-size: 1.05rem; color: var(--text2); max-width: 540px;
  margin-bottom: 56px; line-height: 1.7;
}

/* ── UTILS ── */
.centered { text-align: center; }
.centered .section-intro,
.section-intro.centered { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   INDEX PAGE
══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 56px;
  position: relative; overflow: hidden;
  background-image: image-set(
    url('images/hero.webp') type('image/webp'),
    url('images/hero.jpg')  type('image/jpeg')
  );
  background-size: cover; background-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,0.82) 30%,
    rgba(255,255,255,0.55) 60%,
    rgba(255,255,255,0.2)  100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center;
  background: var(--green-light); border: 1px solid rgba(0,184,95,0.25);
  color: var(--green); padding: 6px 16px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.1; max-width: 820px;
  color: var(--text); margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub {
  font-size: 1.1rem; color: var(--text2); line-height: 1.7;
  max-width: 520px; margin-bottom: 40px;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: var(--green); color: #fff;
  padding: 13px 26px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text);
  padding: 13px 26px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1.5px solid var(--border);
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--text); }
.hero-proof {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.proof-item {
  text-align: center; padding: 12px 28px;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-value { font-size: 1rem; font-weight: 800; color: var(--green); }
.proof-label { font-size: 0.72rem; color: var(--text2); margin-top: 1px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.trust-label {
  font-size: 0.78rem; font-weight: 600; color: var(--text3);
  text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
}
.trust-items {
  display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
}
.trust-item {
  font-size: 0.88rem; font-weight: 700; color: var(--text2);
  letter-spacing: 0.3px;
}

/* ── PROBLEM ── */
.problem { background: var(--bg2); }
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.problem-card {
  background: var(--bg);
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.problem-card:last-child { border-right: none; }
.p-icon {
  width: 40px; height: 40px; margin-bottom: 18px;
  color: var(--green);
}
.problem-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text);
}
.problem-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how { background: var(--bg); }
.how-layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
@media (max-width: 768px) { .how-layout { grid-template-columns: 1fr; gap: 40px; } }
.how-sticky h2 { margin-bottom: 12px; }
.how-sticky p { color: var(--text2); font-size: 0.95rem; line-height: 1.7; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.step-num {
  font-size: 0.78rem; font-weight: 800; color: var(--green);
  background: var(--green-light);
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.how-step p { color: var(--text2); font-size: 0.9rem; line-height: 1.65; }

/* ── STARTER CAMPAIGN CARD ── */
.c-card-starter {
  grid-column: 1 / -1;
  background: var(--text);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  border: none;
}
@media (max-width: 768px) { .c-card-starter { grid-template-columns: 1fr; gap: 24px; } }
.c-starter-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 3px 9px;
  border-radius: 4px; margin-bottom: 12px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
}
.c-card-starter h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.c-card-starter .c-starter-desc { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.65; }
.c-starter-steps { display: flex; flex-direction: column; gap: 16px; }
.c-starter-step { display: flex; gap: 14px; align-items: flex-start; }
.c-starter-num {
  width: 26px; height: 26px; border-radius: 50%; background: var(--green);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.c-starter-step strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 2px; }
.c-starter-step p { color: rgba(255,255,255,0.65); font-size: 0.83rem; line-height: 1.55; margin: 0; }

/* ── CAMPAIGNS ── */
.campaigns { background: var(--bg2); }
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .campaigns-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .campaigns-grid { grid-template-columns: 1fr; } }
.c-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.c-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.c-type {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 3px 9px; border-radius: 4px;
  margin-bottom: 12px;
}
.c-type-vote    { background: #dbeafe; color: #1d4ed8; }
.c-type-game    { background: #fef3c7; color: #b45309; }
.c-type-digital { background: var(--green-light); color: var(--green-dark); }
.c-type-social  { background: #ede9fe; color: #7c3aed; }
.c-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.c-card p { color: var(--text2); font-size: 0.87rem; line-height: 1.6; margin-bottom: 14px; }
.c-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.c-tag {
  font-size: 0.75rem; color: var(--text2);
  background: var(--bg2); border: 1px solid var(--border);
  padding: 3px 8px; border-radius: 4px;
}

/* ── DATA ── */
.data-section { background: var(--bg); }
.data-layout {
  display: grid; grid-template-columns: 5fr 4fr; gap: 72px; align-items: center;
}
@media (max-width: 768px) { .data-layout { grid-template-columns: 1fr; gap: 48px; } }
.data-points { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.dp {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.dp:last-child { border-bottom: none; padding-bottom: 0; }
.dp-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px; background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.dp-icon svg { width: 18px; height: 18px; }
.dp h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.dp p { color: var(--text2); font-size: 0.85rem; line-height: 1.6; }
.data-table {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.data-table-head {
  background: var(--text); color: #fff;
  padding: 14px 20px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.5px;
  display: grid; grid-template-columns: 1fr 72px 24px 72px;
  gap: 8px; align-items: center;
}
.data-table-head span:nth-child(2) { text-align: right; }
.data-table-head span:nth-child(3) { text-align: center; }
.data-table-head span:nth-child(4) { text-align: left; }
.data-row {
  display: grid; grid-template-columns: 1fr 72px 24px 72px;
  gap: 8px; align-items: center;
  padding: 14px 20px; font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.data-row:last-child { border-bottom: none; }
.data-row span:first-child { color: var(--text); font-weight: 500; }
.d-before { color: #ef4444; font-weight: 600; text-align: right; }
.d-arrow { color: var(--text3); font-size: 0.75rem; text-align: center; }
.d-after { color: var(--green); font-weight: 700; text-align: left; }
.data-note {
  padding: 12px 20px; font-size: 0.72rem; color: var(--text3);
  border-top: 1px solid var(--border); background: var(--bg);
}

/* ── PACKAGES ── */
.packages { background: var(--bg2); }
.pkg-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg {
  background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pkg:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(0,184,95,0.12);
  transform: translateY(-3px);
}
.pkg-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.pkg-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text2); margin-bottom: 8px;
}
.pkg-name {
  font-size: 1.25rem; font-weight: 800; color: var(--text);
}
.pkg-price {
  font-size: 2rem; font-weight: 900; color: var(--text);
  margin: 12px 0 4px; letter-spacing: -0.5px;
}
.pkg-price-note {
  font-size: 0.75rem; color: var(--text2);
}
.pkg-price-na {
  font-size: 1.3rem; font-weight: 800; color: var(--text2);
  margin: 12px 0 4px;
}
.pkg-body { padding: 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pkg-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; flex: 1;
}
.pkg-features li {
  display: flex; gap: 10px; font-size: 0.88rem; color: var(--text);
  align-items: flex-start;
}
.pkg-features li::before {
  content: ''; flex-shrink: 0; margin-top: 5px;
  width: 14px; height: 14px;
  background: var(--green-light); border-radius: 50%;
  border: 2px solid var(--green);
}
.pkg-cta {
  display: block; text-align: center; padding: 11px;
  border-radius: 7px; font-weight: 700; font-size: 0.88rem;
  text-decoration: none; transition: all 0.2s;
}
.pkg-cta-outline {
  border: 1.5px solid var(--border); color: var(--text);
}
.pkg-cta-outline:hover { border-color: var(--green); color: var(--green); }
.pkg-cta-solid {
  background: var(--green); color: #fff;
}
.pkg-cta-solid:hover { background: var(--green-dark); }

/* ── KONTAKTDATEN-KAMPAGNE STÖRER ── */
.pkg-stoerer {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: 'Outfit', sans-serif;
  background: var(--green-light);
  border: 1.5px solid rgba(0,184,95,0.25);
  border-radius: var(--radius);
  padding: 24px 32px;
  cursor: pointer; text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.pkg-stoerer:hover { border-color: var(--green); background: #ddf4ea; }
@media (max-width: 600px) {
  .pkg-stoerer { flex-direction: column; align-items: flex-start; }
}
.pkg-stoerer-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 9px; border-radius: 4px; margin-bottom: 10px;
  background: rgba(0,184,95,0.15); color: var(--green-dark);
}
.pkg-stoerer-name {
  font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.pkg-stoerer-desc {
  font-size: 0.85rem; color: var(--text2); line-height: 1.55; max-width: 420px;
}
.pkg-stoerer-right { text-align: right; flex-shrink: 0; }
@media (max-width: 600px) { .pkg-stoerer-right { text-align: left; } }
.pkg-stoerer-price {
  font-size: 1.7rem; font-weight: 800; color: var(--text); line-height: 1;
}
.pkg-stoerer-label {
  font-size: 0.75rem; color: var(--text3); margin-bottom: 12px;
}
.pkg-stoerer-cta {
  display: inline-block; font-size: 0.82rem; font-weight: 700;
  color: var(--green-dark); border: 1.5px solid var(--green);
  padding: 7px 14px; border-radius: 6px; white-space: nowrap;
}

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.55);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: #fff; border-radius: 14px;
  width: 100%; max-width: 580px;
  padding: 36px 40px;
  position: relative;
  max-height: 90vh; overflow-y: auto;
}
@media (max-width: 600px) { .modal-card { padding: 28px 22px; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  font-family: 'Outfit', sans-serif;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 50%; width: 32px; height: 32px;
  font-size: 1.2rem; line-height: 1; cursor: pointer;
  color: var(--text2); display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--border); }
.modal-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 9px; border-radius: 4px; margin-bottom: 12px;
  background: var(--green-light); color: var(--green-dark);
}
.modal-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.modal-intro { font-size: 0.93rem; color: var(--text2); line-height: 1.65; margin-bottom: 28px; }
.modal-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.modal-step { display: flex; gap: 16px; align-items: flex-start; }
.modal-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.modal-step strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 3px; }
.modal-step p { font-size: 0.84rem; color: var(--text2); line-height: 1.55; margin: 0; }
.modal-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-top: 1px solid var(--border); padding-top: 24px;
}
@media (max-width: 480px) { .modal-footer { flex-direction: column; align-items: flex-start; } }
.modal-price { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; }
.modal-price-note { font-size: 0.78rem; color: var(--text3); margin-top: 5px; line-height: 1.45; }
.modal-cta { white-space: nowrap; }

/* ── JAHRESPLAN ── */
.jahresplan { padding: 96px 0; }
.jp-intro { max-width: 600px; margin: 0 auto 48px; text-align: center; color: var(--text2); line-height: 1.65; font-size: 1.05rem; }
.jp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 640px) { .jp-grid { grid-template-columns: repeat(2, 1fr); } }
.jp-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 22px; position: relative; overflow: hidden; }
.jp-season { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 10px; }
.jp-title { font-weight: 700; font-size: 0.98rem; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.jp-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.55; margin-bottom: 10px; }
.jp-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; letter-spacing: 0.02em; }
.jp-tag-abstimmung   { background: rgba(59,130,246,0.1);  color: #2563eb; }
.jp-tag-gamification { background: rgba(245,158,11,0.1);  color: #d97706; }
.jp-tag-content      { background: rgba(0,184,95,0.1);    color: #009a4f; }
.jp-tag-gemeinschaft { background: rgba(139,92,246,0.1);  color: #7c3aed; }
.jp-dot { position: absolute; top: 0; right: 0; width: 44px; height: 44px; border-radius: 0 12px 0 44px; }
.jp-dot-abstimmung   { background: rgba(59,130,246,0.12); }
.jp-dot-gamification { background: rgba(245,158,11,0.12); }
.jp-dot-content      { background: rgba(0,184,95,0.12);   }
.jp-dot-gemeinschaft { background: rgba(139,92,246,0.12); }

/* ── FAQ ── */
.faq { padding: 96px 0; background: var(--bg2); }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--text); gap: 16px; user-select: none; }
.faq-q:hover { color: var(--green); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; line-height: 1; color: var(--text2); font-weight: 300; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); color: #fff; }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-body p { padding-bottom: 22px; color: var(--text2); line-height: 1.75; font-size: 0.95rem; }
.faq-item.open .faq-body { max-height: 300px; }

/* ── CONTACT ── */
.contact { background: var(--bg2); }
.contact-layout {
  display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: flex-start;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }
.contact-aside h2 { margin-bottom: 12px; }
.contact-aside p { color: var(--text2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.contact-promises { display: flex; flex-direction: column; gap: 10px; }
.contact-promise {
  display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem;
}
.cp-dot {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.7rem; font-weight: 800;
  margin-top: 2px;
}
form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label {
  font-size: 0.78rem; font-weight: 600; color: var(--text2);
  display: block; margin-bottom: 5px;
}
input, select, textarea {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text); padding: 11px 14px; border-radius: 7px;
  font-size: 0.92rem; font-family: inherit;
  transition: border-color 0.15s; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
}
input.input-error { border-color: #ef4444 !important; }
input.input-valid { border-color: #00b85f; }
input::placeholder, textarea::placeholder { color: var(--text3); }
select option { background: var(--bg); }
textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--green); color: #fff;
  border: none; padding: 14px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s; margin-top: 4px;
  font-family: inherit;
}
.form-submit:hover { background: var(--green-dark); }
.form-note { font-size: 0.75rem; color: var(--text3); }

/* ══════════════════════════════════════════
   LEGAL PAGES (Impressum / Datenschutz)
══════════════════════════════════════════ */

.page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.page-eyebrow {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--green); margin-bottom: 12px;
}
.page-wrap h1 {
  font-size: 2.2rem; font-weight: 900; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 48px; line-height: 1.2;
}
.toc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 48px;
}
.toc p { margin-bottom: 6px; font-size: 0.9rem; }
.toc p:last-child { margin-bottom: 0; }
.toc a { color: var(--text2); text-decoration: none; }
.toc a:hover { color: var(--green); }

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 1rem; font-weight: 700; color: var(--text);
  margin-bottom: 14px; letter-spacing: -0.01em;
}
.legal-section p {
  font-size: 0.95rem; color: var(--text2); line-height: 1.75;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-section a { color: var(--green); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
