:root {
  --navy: #12103a;
  --navy-2: #1a1850;
  --coral: #f0775a;
  --coral-dark: #d85f43;
  --violet: #6c4fd6;
  --violet-dark: #5a3fc0;
  --cream: #f6f2ec;
  --cream-dark: #e7e1d5;
  --textgray: #5b5b6b;
  --white: #ffffff;
  --border: #e2ddd0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: var(--white);
  line-height: 1.7;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { padding: 4.5rem 0; overflow: hidden; }
.section-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 0.6rem;
}
h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.05rem); font-weight: 800;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.25;
}
.lead { font-size: 1.02rem; color: var(--textgray); max-width: 680px; }

.btn {
  display: inline-block; padding: 0.85rem 1.7rem; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none; font-family: inherit;
}
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-dark); }
.btn-violet { background: var(--violet); color: var(--white); }
.btn-violet:hover { background: var(--violet-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── HEADER ── */
header {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 2rem; max-width: 1180px; margin: 0 auto;
}
header .logo img { height: 240px; width: auto; }
header nav ul { display: flex; gap: 1.7rem; list-style: none; }
header nav a {
  text-decoration: none; color: rgba(255,255,255,0.88);
  font-size: 0.85rem; font-weight: 600; transition: color 0.2s;
}
header nav a:hover { color: var(--coral); }
.nav-toggle {
  display: none; background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: var(--white); padding-bottom: 4.5rem;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55; mix-blend-mode: screen; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 3rem;
}
.hero-text { flex: 1.1; min-width: 0; }
.hero-art {
  flex: 1; position: relative; min-width: 0; aspect-ratio: 6 / 5;
}
.hero-art-astronaut {
  position: absolute; left: 40%; top: 50%; width: 52%; height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.45));
}

.hero-badge {
  position: absolute; bottom: 6%; right: 4%;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0.8rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.hero-badge .b1 { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.03em; line-height: 1.3; text-transform: uppercase; }
.hero-badge .b2 { font-size: 0.55rem; font-weight: 600; margin-top: 0.4rem; opacity: 0.9; text-transform: uppercase; }

.hero h1 {
  font-size: clamp(1.9rem, 4.3vw, 3rem);
  font-weight: 800; line-height: 1.16; margin-bottom: 1.2rem; text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--coral); }
.hero p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 1rem; }
.hero p.strong { font-weight: 700; color: var(--coral); font-size: 1.02rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PROBLEM ── */
.problem-inner { display: flex; align-items: center; gap: 3rem; }
.problem-text { flex: 1; }
.problem-photo { flex: 1; }
.photo-placeholder {
  background: var(--cream-dark); border: 2px dashed #c9c4b8; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #8a8578; font-size: 0.8rem; text-align: center; padding: 1rem;
  width: 100%; height: 100%; min-height: 240px;
}

/* ── ICON ROW ── */
.vorteile { background: var(--cream); text-align: center; }
.vorteile h2 { text-align: center; }
.icon-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.3rem;
  margin-top: 2.6rem;
}
.icon-item { width: 108px; }
.icon-item .icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--navy); color: var(--navy);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 0.7rem;
}
.icon-item .icon-circle svg { width: 21px; height: 21px; }
.icon-item h3 { font-size: 0.76rem; font-weight: 700; color: var(--navy); line-height: 1.3; }

/* ── FÜR WEN / NICHT IST ── */
.zielgruppe { background: var(--cream); }
.zw-wide-photo {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 10px; margin-bottom: 2.5rem;
}
.zw-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.zw-text { padding: 0; }
.check-list, .cross-list { list-style: none; margin-top: 1rem; }
.check-list li, .cross-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.9rem; color: var(--textgray); padding: 0.35rem 0;
}
.check-list li::before { content: "✓"; color: var(--coral); font-weight: 800; flex-shrink: 0; }
.cross-list li::before { content: "✕"; color: #b6b2c4; font-weight: 800; flex-shrink: 0; }

/* ── WER DAHINTER STEHT ── */
.wer-dahinter { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.wer-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3; mix-blend-mode: screen; z-index: 0;
}
.wer-dahinter .section-inner { position: relative; z-index: 2; }
.katja-row {
  display: grid; grid-template-columns: auto 1.5fr 1.1fr 1fr; gap: 2.2rem; align-items: center;
}
.katja-photo-circle {
  width: 150px; height: 150px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
.katja-photo-circle img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 12%;
}
.katja-bio .section-tag { color: #b9aef0; }
.katja-bio .name { color: var(--coral); font-weight: 800; font-size: 1.15rem; margin-bottom: 0.6rem; }
.katja-bio p { color: rgba(255,255,255,0.82); font-size: 0.92rem; }

.katja-facts { display: flex; flex-direction: column; gap: 0.7rem; }
.fact-row { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; color: rgba(255,255,255,0.9); }
.fact-row .fi {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--coral);
}
.fact-row .fi svg { width: 15px; height: 15px; }

.wetzikon-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 1.4rem 1.5rem; align-self: stretch;
}
.wetzikon-card h3 {
  color: var(--white); font-size: 0.98rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem;
}
.wetzikon-card h3 svg { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; }
.wetzikon-card ul { list-style: none; }
.wetzikon-card li { font-size: 0.84rem; color: rgba(255,255,255,0.85); padding: 0.22rem 0; display: flex; gap: 0.5rem; }
.wetzikon-card li::before { content: "◆"; color: var(--coral); font-size: 0.6rem; margin-top: 0.4em; }
.wetzikon-card li.highlight { color: var(--coral); font-weight: 700; }
.wetzikon-card li.highlight::before { content: ""; }

/* ── SUPPORTER TEXT ── */
.supporter-intro { background: var(--cream); }
.supporter-intro .section-tag { color: var(--coral); }
.supporter-intro h2 { color: #111111; }
.supporter-intro .lead { color: #111111; }
.supporter-list {
  list-style: none; margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem 2rem;
}
.supporter-list li { display: flex; gap: 0.6rem; font-size: 1.05rem; font-weight: 700; color: #111111; padding: 0.25rem 0; }
.supporter-list li::before { content: "→"; color: var(--coral); font-weight: 800; }
.supporter-note { margin-top: 1.4rem; font-size: 1.05rem; font-weight: 700; color: #111111; max-width: none; }

/* ── FORMULARE ── */
.formulare { background: var(--white); }
.formular-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch;
}
.formular-box { border-radius: 10px; padding: 2rem; }
.formular-box.gast { background: #fdf3f0; border-top: 4px solid var(--coral); }
.formular-box.sponsor { background: #f2effb; border-top: 4px solid var(--violet); }
.formular-box h3.gast-title { color: var(--coral); }
.formular-box h3.sponsor-title { color: var(--violet); }
.formular-box h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 0.4rem; }
.formular-box .sub { font-size: 0.87rem; color: var(--textgray); margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-group { margin-bottom: 1rem; }
.form-checkbox label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.82rem; font-weight: 400; color: var(--textgray); cursor: pointer; }
.form-checkbox input[type="checkbox"] { width: auto; margin-top: 0.2rem; flex-shrink: 0; }
.phone-row { display: grid; grid-template-columns: 108px 1fr; gap: 0.5rem; }
.field-hint { font-size: 0.74rem; color: var(--textgray); margin-top: 0.35rem; }
.checkbox-group { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.5rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 400; color: var(--textgray); cursor: pointer; }
.checkbox-item input { width: auto; flex-shrink: 0; }
label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 0.65rem 0.9rem; border: 1.5px solid var(--border);
  border-radius: 5px; font-size: 0.9rem; font-family: inherit; color: #222;
  background: var(--white);
}
textarea { resize: vertical; min-height: 76px; }
.form-submit { width: 100%; margin-top: 0.4rem; }
.success-msg {
  display: none; background: #eafaf1; border: 1px solid #27ae60; color: #1e8449;
  padding: 0.9rem; border-radius: 5px; margin-top: 1rem; font-size: 0.85rem;
}
.success-msg.show { display: block; }

/* ── CLOSING ── */
.closing { background: var(--cream); }
.closing .section-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.closing-text { flex: 1.4; min-width: 280px; }
.closing h2 { color: var(--navy); margin-bottom: 0.6rem; }
.closing p.sub { color: var(--textgray); font-size: 0.9rem; margin-bottom: 0.8rem; }
.closing .wordmark { font-weight: 700; font-size: 0.98rem; color: var(--navy); }
.closing .wordmark .tagline { color: var(--coral); }
.closing-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.closing .btn-outline { color: var(--navy); border-color: var(--navy); }
.closing .btn-outline:hover { background: rgba(26,24,80,0.06); border-color: var(--navy); }
.closing .orbit-icon { color: rgba(26,24,80,0.35); }
.orbit-icon { width: 46px; height: 46px; color: rgba(255,255,255,0.5); flex-shrink: 0; }

/* ── ORBIT MISSION (Astronauten-Meeting, letzte Section) ── */
.orbit-mission { background: var(--navy); padding: 0; }
.orbit-mission img { width: 100%; height: auto; display: block; }

/* ── FOOTER ── */
footer { background: #0e0c30; color: rgba(255,255,255,0.55); padding: 2.2rem 2rem; text-align: center; font-size: 0.85rem; }
footer strong { color: var(--white); }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-links { margin-top: 0.7rem; display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .katja-row { grid-template-columns: 1fr; text-align: left; }
  .katja-facts { flex-direction: column; }
}
@media (max-width: 760px) {
  header .logo img { height: 56px; }
  .nav-toggle { margin-left: auto; }
  header nav ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--navy-2); padding: 0.5rem 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  }
  header nav.open ul { display: flex; }
  header nav ul li { width: 100%; }
  header nav ul a { display: block; padding: 0.8rem 2rem; }
  .nav-toggle { display: block; }
  .hero-inner { flex-direction: column-reverse; text-align: center; }
  .hero-art { flex: none; width: 100%; }
  .hero-art-astronaut { left: 32%; width: 48%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-badge { width: 108px; height: 108px; }
  .problem-inner { flex-direction: column; }
  .zw-grid { grid-template-columns: 1fr; }
  .supporter-list { grid-template-columns: 1fr; }
  .formular-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .phone-row { grid-template-columns: 90px 1fr; }
  .closing .section-inner { flex-direction: column; text-align: center; }
  .closing-cta { justify-content: center; }
}
@media (max-width: 420px) {
  .g-recaptcha { transform: scale(0.86); transform-origin: 0 0; width: 261px; }
}
@media (max-width: 400px) {
  .section-inner { padding: 0 1.2rem; }
  section { padding: 3rem 0; }
  header { padding: 1.2rem 1.2rem; }
}
