:root {
  --navy: #1c2f5d;
  --navy-dark: #132247;
  --green: #98c94a;
  --green-dark: #73aa24;
  --solar: #f4b400;
  --ink: #22272f;
  --muted: #5e6b7a;
  --line: #dfe6ef;
  --bg: #f6f9fc;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(23, 37, 74, 0.10);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 82px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: 10px;
}
h1,h2,h3 { line-height: 1.1; margin: 0 0 16px; }
h1 { font-size: clamp(2.3rem, 5vw, 4.7rem); }
h2 { font-size: clamp(1.8rem, 3.3vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.1vw, 1.45rem); }
p { margin: 0 0 16px; color: var(--ink); }
.lead { font-size: 1.15rem; color: var(--muted); }
.muted { color: var(--muted); }

.btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #10200a; }
.btn-primary:hover { background: #a7d55d; }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-dark); }
.btn-ghost {
  background: rgba(28, 47, 93, 0.06);
  color: var(--navy);
  box-shadow: none;
  border: 1px solid rgba(28, 47, 93, 0.08);
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(28, 47, 93, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex-shrink: 0;
}
.brand img.logo { width: min(350px, 48vw); height: auto; }
.brand img.slogan { width: 120px; border-radius: 10px; box-shadow: 0 8px 20px rgba(28,47,93,.14); }

.nav-toggle {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
}
nav { min-width: 0; }
nav ul {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: .96rem;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a[aria-current="page"] { border-color: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(152,201,74,.22), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(244,180,0,.18), transparent 20%),
    linear-gradient(140deg, #f9fcff 0%, #edf4fb 50%, #f7fbff 100%);
  padding: 70px 0 52px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 32px;
  align-items: center;
}
.hero-card {
  background: var(--white);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 47, 93, 0.08);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.pill {
  background: rgba(152,201,74,.14);
  color: #245212;
  border: 1px solid rgba(152,201,74,.28);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.price-box {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(28,47,93,.04), rgba(28,47,93,.02));
  border: 1px solid rgba(28,47,93,.08);
}
.price-box strong { font-size: 1.45rem; color: var(--navy); }
.price-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(152,201,74,.12);
  color: #244b10;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.stat {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28,47,93,.08);
}
.stat .num { font-size: 1.6rem; font-weight: 900; color: var(--navy); }
.stat.price-stat .num { white-space: nowrap; font-size: clamp(1.55rem, 3vw, 2rem); letter-spacing: -.02em; }
.stat.price-stat { border: 1px solid rgba(152,201,74,.55); background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(152,201,74,.08)); box-shadow: 0 0 0 1px rgba(152,201,74,.14), var(--shadow); }
.stat.price-stat .small { max-width: 18ch; }
.offer-card.local.local-accent { border: 1px solid rgba(152,201,74,.55); box-shadow: 0 0 0 1px rgba(152,201,74,.18), var(--shadow); }
.offer-card .small-subnote strong { color: var(--navy); }
.bonus-card { display:flex; flex-direction:column; }
.bonus-card p.muted { min-height: 116px; margin-bottom: 0; }
.bonus-grid-inline { margin-top: 18px; }
.footer-brandmark img { width:min(100%, 420px); height:auto; display:block; }
.stat .small { color: var(--muted); }

.offer-card .price + .small-subnote { color: var(--navy); }
.offer-card.local .small-subnote strong { color: var(--navy); }
.offer-card.local .price, .offer-card.public .price { line-height: 1.25; }
.table-wrap table { table-layout: fixed; }
.info-strip li { margin-bottom: 4px; }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28,47,93,.08);
}
.feature-list, .check-list { display: grid; gap: 12px; padding: 0; margin: 18px 0 0; list-style: none; }
.feature-list li, .check-list li {
  display: flex; gap: 12px; align-items: flex-start;
}
.icon {
  width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  background: rgba(152,201,74,.15); color: #245212;
  margin-top: 1px;
}
.icon.navy { background: rgba(28,47,93,.09); color: var(--navy); }
.icon.solar { background: rgba(244,180,0,.15); color: #8f6100; }

.band {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.band h2, .band h3, .band strong, .band .visual-kicker { color: #fff; }
.band p, .band .muted { color: rgba(255,255,255,.9); }
.band .btn-ghost { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.18); }

.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
th { background: var(--navy); color: var(--white); font-size: .95rem; }
tr:nth-child(even) td { background: #fbfdff; }
.table-note {
  margin-top: 14px;
  font-size: .96rem;
  color: var(--muted);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.bonus-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(28,47,93,.09);
  box-shadow: var(--shadow);
}
.bonus-card.highlight { outline: 2px solid rgba(152,201,74,.45); }
.bonus-grid-inline { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 16px; }
.bonus-col { display:grid; gap: 0; }
.bonus-row { display:flex; align-items:baseline; justify-content:space-between; gap:16px; padding: 10px 0; border-top: 1px solid var(--line); }
.bonus-label { color: var(--muted); font-weight: 700; }
.bonus-value { font-weight: 900; color: var(--navy); min-width: 72px; text-align: right; }
.badge {
  display: inline-flex;
  background: rgba(152,201,74,.14);
  color: #244b10;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .84rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.visual-box {
  min-height: 240px;
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(28,47,93,.95), rgba(28,47,93,.78)),
    linear-gradient(135deg, rgba(152,201,74,.20), rgba(244,180,0,.16));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.visual-box::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152,201,74,.28), transparent 68%);
}
.visual-box.small { min-height: 220px; }
.visual-kicker { color: rgba(255,255,255,.78); font-weight: 700; }
.visual-big { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1; }

.faq-wrap { display: grid; gap: 14px; margin-top: 20px; }
details {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28,47,93,.08);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
  padding-right: 52px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--green-dark);
}
details[open] summary::after { content: "–"; }
.faq-content { padding: 0 22px 20px; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
}
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.map-card {
  min-height: 100%;
  background: linear-gradient(135deg, #fafdff, #eef4fb);
  border: 1px solid rgba(28,47,93,.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.map-embed {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(28,47,93,.08);
  min-height: 280px;
  background: linear-gradient(135deg, rgba(28,47,93,.08), rgba(152,201,74,.08));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.register-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: start;
}
.toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.toggle-option {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(28,47,93,.1);
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.toggle-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.toggle-option.active {
  outline: 2px solid rgba(152,201,74,.46);
  background: #fbfff5;
}

form {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28,47,93,.08);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: .92rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid #cfd9e7;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.checkboxes { display: grid; gap: 10px; margin-top: 4px; }
.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid rgba(28,47,93,.08);
  border-radius: 14px;
  background: #fbfdff;
}
.checkbox input { width: 18px; min-height: 18px; margin-top: 3px; }
.disclaimer {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(244,180,0,.13);
  color: #6f4f00;
  font-size: .95rem;
}
.success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(152,201,74,.16);
  color: #245212;
  font-weight: 700;
}

footer {
  background: var(--navy);
  color: var(--white);
  padding: 34px 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}
.footer-meta, footer .logo-note { color: rgba(255,255,255,.9); }

.hide { display: none !important; }
.visual-box p, .visual-box .btn-ghost { position: relative; z-index: 1; }
.visual-box .btn-ghost.btn-on-dark { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.22); }
.visual-box .btn-ghost.btn-on-dark:hover { background: rgba(255,255,255,.22); }
.downloads-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; margin-top:14px; }
.download-card { display:flex; align-items:center; min-height:68px; padding:16px 18px; border-radius:16px; background:#fff; border:1px solid rgba(28,47,93,.08); box-shadow: var(--shadow); color: var(--navy); font-weight:800; }
.download-card:hover { transform: translateY(-1px); }
.quantity-row { display:grid; grid-template-columns: 1fr 120px; gap:12px; align-items:end; margin: -2px 0 6px; }
.quantity-row label { margin:0; }
.footer-logo-box { display:inline-block; background: rgba(255,255,255,.98); padding: 10px 14px; border-radius: 16px; }
.small-highlight { color: var(--navy); font-weight: 800; display: inline; padding-bottom: 1px; box-shadow: inset 0 -0.42em 0 rgba(152,201,74,.26); }
.small-subnote { color: rgba(28,47,93,.78); font-size: .92rem; }
.price-label-small { font-size: .72em; font-weight: 700; white-space: nowrap; }
.price-amount-nowrap { white-space: nowrap; }

.dual-offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  align-items: stretch;
}
.hero-card > h3.offer-overview-title {
  max-width: 29ch;
  line-height: 1.12;
  margin-bottom: 0;
}
.hero-card > h3.offer-overview-title .line2 { white-space: nowrap; }

.offer-card {
  border-radius: 18px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(28,47,93,.08);
  background: linear-gradient(180deg, rgba(28,47,93,.04), rgba(28,47,93,.02));
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(5.8em, auto) auto auto 1fr;
  row-gap: 0;
}
.offer-card.public { background: linear-gradient(180deg, rgba(28,47,93,.05), rgba(28,47,93,.015)); }
.offer-card.local { background: linear-gradient(180deg, rgba(152,201,74,.18), rgba(152,201,74,.08)); border-color: rgba(152,201,74,.35); }
.card.local-only { background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(152,201,74,.08)); border-color: rgba(152,201,74,.38); box-shadow: 0 0 0 1px rgba(152,201,74,.10), var(--shadow); }

.offer-card .label {
  display: inline-flex;
  justify-self: start;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  background: rgba(28,47,93,.08);
  color: var(--navy);
  white-space: nowrap;
}
.offer-card.local .label { background: rgba(152,201,74,.2); color: #245212; }

.offer-card h3 { margin-bottom: 8px; }
.offer-card .muted {
  min-height: 6.2em;
  margin-bottom: 0;
}

.offer-price-group {
  align-self: start;
  margin-top: 10px;
}
.offer-price-row,
.offer-bonus-price-row {
  display: grid;
  grid-template-columns: 58px max-content 18px;
  column-gap: 6px;
  align-items: baseline;
  color: var(--navy);
  white-space: nowrap;
}
.offer-price-row {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.16;
}
.offer-price-row + .offer-price-row { margin-top: 2px; }

.offer-code,
.offer-amount-main,
.offer-currency,
.offer-bonus-amount { white-space: nowrap; }

.offer-card strong.price {
  display: block;
  font-size: 1.55rem;
  color: var(--navy);
  margin: 0;
}

.offer-note-row {
  margin-top: 6px;
  font-size: .93rem;
  color: var(--navy);
  line-height: 1.25;
}

.offer-bonus-wrap {
  margin-top: 6px;
  color: var(--navy);
}
.offer-bonus-label {
  display: block;
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 2px 0;
}
.offer-bonus-price-row {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.08;
}
.offer-bonus-price-row .offer-bonus-amount {
  grid-column: 2;
  justify-self: start;
  transform: translateX(-6px);
}
.offer-bonus-price-row .offer-currency {
  grid-column: 3;
  justify-self: start;
  transform: translateX(-6px);
}

.mini-note {
  margin-top: 10px;
  font-size: .93rem;
  color: var(--muted);
  align-self: end;
}

.section-index {
  display:flex; flex-wrap:wrap; gap:10px; margin:22px 0 8px;
}
.section-index a {
  display:inline-flex; padding:10px 14px; border-radius:999px; background:#fff; border:1px solid rgba(28,47,93,.08);
  color: var(--navy); font-weight:700; box-shadow: var(--shadow);
}
.faq-group { margin-top: 34px; }
.faq-group h3 { margin-bottom: 12px; color: var(--navy); }
.info-strip {
  margin-top:16px; padding:14px 16px; border-radius:16px; background: rgba(28,47,93,.05); border:1px solid rgba(28,47,93,.08);
}
.info-strip ul { margin: 8px 0 0; padding-left: 22px; }
.info-strip li + li { margin-top: 8px; }
.info-strip.local-only {
  background: rgba(152,201,74,.12);
  border-color: rgba(152,201,74,.3);
}

.local-inline-note { margin-top:12px; font-weight:800; color:var(--navy); }
.contract-card { display:block; }
.contract-card.hide { display:none; }
.download-note { margin-top:8px; color:var(--muted); }
.legal-links-list { display:grid; gap:14px; }

/* Nur im Kasten "Ohne Registrierung": Öffentlich / laden zweizeilig */
.offer-card.public h3 {
  max-width: 8.5ch;
  line-height: 1.05;
}

/* Text im Registrierungs-Kasten sauber innerhalb der Box halten */
.offer-card > div {
  min-width: 0;
}
.offer-card.local p.muted {
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (max-width: 1060px) {
  .hero-grid, .grid-2, .contact-grid, .register-box, .split-card, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .stats, .bonus-cards { grid-template-columns: repeat(2, 1fr); }
  .brand img.slogan { display: none; }
  nav ul { gap: 12px; }
}

@media (max-width: 980px) {
  .hero-card > h3.offer-overview-title { max-width: none; }
  .offer-card .muted { min-height: 0; }
  .offer-card { grid-template-rows: auto auto auto auto auto; }
  .offer-price-group { margin-top: 8px; }
}

@media (max-width: 860px) {
  .legal-links-list { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav { min-height: 76px; }
  .nav-toggle { display: inline-flex; }
  nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,.98);
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(28,47,93,.08);
    padding: 14px;
    display: none;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 46px; }
  .price-grid, .toggle-row, .form-grid, .grid-3, .grid-4, .stats, .bonus-cards, .dual-offer, .downloads-grid, .quantity-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-card, .card, .band, form { padding: 20px; }
  .brand img.logo { width: min(250px, 62vw); }
  th, td { white-space: normal; }
  .bonus-value { min-width: 0; }
  .local-inline-note { display: block; }
  .offer-card.public h3 { max-width: none; line-height: 1.1; }
  .offer-card > div { min-width: 0; }
  .offer-card.local p.muted { max-width: 100%; overflow-wrap: break-word; }
}

@media (max-width: 680px) {
  .bonus-grid-inline { grid-template-columns: 1fr; gap: 8px; }
  .price-box strong, .offer-card .price, .stat.price-stat .num { font-size: 1.9rem; }
}
