/* LEBENLANG Brand — abgeleitet von lebenlang.eu
   Akzent #F2B90F (Amber), Text #212121, Poppins (Headlines) + Roboto (Body). */
:root {
  --ink: #212121;
  --accent: #F2B90F;
  --accent-press: #d9a40a;
  --accent-tint: #fdf4d8;
  --bg: #f4f4f4;
  --card: #ffffff;
  --border: #ebebeb;
  --muted: #6b6b6b;
  --error: #c0392b;
  --ok: #1f9d55;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5e7 100%);
  color: var(--ink);
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.brand { margin-bottom: 20px; text-align: center; }
.brand img { height: 36px; width: auto; }

.card {
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(33, 33, 33, 0.10);
  padding: 0 0 18px;
  overflow: hidden;
  text-align: center;
}

/* Schritt 1: Sprachauswahl als bewusste Wahl */
.gate-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.lang-gate {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 28px 8px;
}
.lang-gate .lang-btn {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s, transform .05s;
}
.lang-gate .lang-btn:hover {
  border-color: var(--accent);
  background: var(--accent-tint);
}
.lang-gate .lang-btn:active { transform: translateY(1px); }

/* "Sprache ändern" zurück-Link in Schritt 2 */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 16px 0 -8px 20px;
  padding: 6px 4px;
  background: none;
  border: 0;
  color: var(--muted);
  font-family: "Roboto", sans-serif;
  font-size: .86rem;
  cursor: pointer;
}
.back-link:hover { color: var(--ink); }

/* Hero */
.hero { padding: 26px 28px 6px; }
.hero-badge {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-press);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(242, 185, 15, 0.10);
}
.cover { margin: 0 0 16px; }
.cover img {
  max-width: 160px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(33, 33, 33, 0.14);
}

h1, h2 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: 1.45rem; margin: 0 0 8px; }
h2 { font-size: 1.25rem; margin: 0 0 8px; }

.guide-title {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
}

/* Formular */
form { text-align: left; padding: 22px 28px 4px; }
.field { display: block; margin-bottom: 16px; }
.field span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: 7px;
}
input[type="email"] {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: var(--ink);
}
input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.consent input { margin-top: 3px; accent-color: var(--accent); }
.consent a { color: var(--ink); text-decoration: underline; }

button[type="submit"] {
  width: 100%;
  padding: 15px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .05s;
}
button[type="submit"]:hover { background: var(--accent-press); }
button[type="submit"]:active { transform: translateY(1px); }
button[disabled] { opacity: .55; cursor: default; }

.trust {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 14px 0 0;
  font-size: .82rem;
  color: var(--ok);
  font-weight: 500;
}

.error { color: var(--error); font-size: .88rem; margin: 12px 0 0; text-align: center; }

/* Erfolg */
#step-success { padding: 28px; }
.checkmark {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 2.1rem;
  display: flex; align-items: center; justify-content: center;
}

.legal {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--muted);
}
.legal a { color: var(--muted); text-decoration: none; }
.legal a:hover { color: var(--ink); text-decoration: underline; }

.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* Bestätigungs-/Download-Seite */
.download {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 26px;
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.download:hover { background: var(--accent-press); }
