:root {
  --brand: #678716;
  --brand-dark: #526d11;
  --brand-deep: #2c3a0a;
  --brand-soft: #eef2e2;
  --ink: #3a3a3a;
  --muted: #666666;
  --line: #e3e6da;
  --bg: #ffffff;
  --bg-soft: #f6f7f2;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(44, 58, 10, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}

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

.wrap { width: min(1100px, 92%); margin: 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand-deep); color: #fff;
  padding: 0.6rem 1rem; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a { color: var(--brand); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 0.8rem 0;
}
.brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--ink);
}
.brand-logo-img {
  height: 44px; width: auto; flex: none;
}
.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem;
  padding: 0.3rem 0; border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.main-nav a.nav-cta {
  background: var(--brand); color: #fff; border: 0;
  padding: 0.55rem 1.2rem; border-radius: 999px;
}
.main-nav a.nav-cta:hover { background: var(--brand-dark); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 480px at 85% -10%, rgba(103, 135, 22, 0.18), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(103, 135, 22, 0.10), transparent 60%),
    linear-gradient(180deg, #fbfcf7 0%, #f2f4ea 100%);
  padding: 6.5rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 720px; }
.hero .eyebrow {
  display: inline-block;
  background: var(--brand-soft); color: var(--brand-dark);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  color: var(--brand-deep);
}
.hero h1 em { font-style: normal; color: var(--brand); }
.hero p {
  margin-top: 1.2rem; font-size: 1.15rem; color: var(--muted); max-width: 56ch;
}
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.7rem; border-radius: 999px; transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--brand-dark); border: 1.5px solid var(--brand); }
.btn-ghost:hover { background: var(--brand-soft); }

/* ---------- USP strip ---------- */
.usp { padding: 2.6rem 0; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.usp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem;
}
.usp-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.usp-icon {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-dark);
  font-size: 1.2rem;
}
.usp-item h3 { font-size: 1rem; font-weight: 600; }
.usp-item p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Sections ---------- */
section.block { padding: 4.5rem 0; }
section.block.alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 2.6rem; }
.section-head .kicker {
  color: var(--brand); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  letter-spacing: -0.01em; color: var(--brand-deep); margin-top: 0.3rem;
}
.section-head p { color: var(--muted); margin-top: 0.7rem; max-width: 640px; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.3rem;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: 0 2px 10px rgba(44, 58, 10, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cdd6b4; }
.card .card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.35rem;
  background: var(--brand-soft); margin-bottom: 1rem;
}
.card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; color: var(--brand-deep); }
.card p, .card li { font-size: 0.95rem; color: var(--muted); }
.card ul { list-style: none; margin-top: 0.6rem; }
.card ul li { padding-left: 1.4rem; position: relative; margin-bottom: 0.3rem; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
/* ---------- Section CTA ---------- */
.section-cta { margin-top: 2.4rem; display: flex; justify-content: center; }

/* ---------- Prices ---------- */
.price-toc {
  list-style: none; margin-top: 1rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem;
}
.price-toc li {
  color: var(--brand); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.price-note {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem;
  background: #fff8e1; border: 1px solid #f0e2ac; color: #6b5b14;
  border-radius: 10px; padding: 0.8rem 1.1rem; font-size: 0.92rem; margin-bottom: 2rem;
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(44, 58, 10, 0.04);
  margin-bottom: 1.4rem; overflow: hidden;
}
.step-head {
  display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap;
  padding: 1.2rem 1.6rem; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.step-num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 0.95rem;
}
.step-head h3 { font-size: 1.2rem; color: var(--brand-deep); }
.step-head .price {
  margin-left: auto; font-weight: 700; color: var(--brand-dark); font-size: 1.05rem;
  white-space: nowrap;
}
.step-body { padding: 1.4rem 1.6rem; overflow-x: auto; }
.step-body p { color: var(--muted); font-size: 0.97rem; }
.step-body p + p { margin-top: 0.7rem; }
.step-body ul { margin-top: 0.6rem; padding-left: 1.3rem; color: var(--muted); font-size: 0.97rem; }
.step-body ul li { margin-bottom: 0.3rem; }
.step-body h4 {
  margin: 1.2rem 0 0.6rem; font-size: 1rem; color: var(--ink);
}
.step-body h4:first-child { margin-top: 0; }
table.price-table {
  width: 100%; border-collapse: collapse; margin-top: 0.6rem; font-size: 0.95rem;
}
table.price-table th, table.price-table td {
  text-align: left; padding: 0.55rem 0.8rem; border-bottom: 1px solid var(--line);
}
table.price-table th { color: var(--brand-deep); font-weight: 600; background: var(--brand-soft); }
table.price-table td:last-child, table.price-table th:last-child { text-align: right; white-space: nowrap; }
table.price-table td.span-both { text-align: center; }
.fineprint { font-size: 0.85rem; color: var(--muted); margin-top: 0.9rem; }

/* ---------- Legal ---------- */
details.legal {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; padding: 0; overflow: hidden;
}
details.legal summary {
  cursor: pointer; list-style: none; padding: 1.2rem 1.5rem;
  font-weight: 600; color: var(--brand-deep);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
details.legal summary::-webkit-details-marker { display: none; }
details.legal summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--brand);
  transition: transform 0.2s ease;
}
details.legal[open] summary::after { content: "–"; }
details.legal .legal-body {
  padding: 0 1.5rem 1.5rem; color: var(--muted); font-size: 0.92rem;
  border-top: 1px solid var(--line);
}
details.legal .legal-body p { margin-top: 0.8rem; }
details.legal .legal-body ul { margin: 0.8rem 0 0.8rem 1.3rem; }
details.legal .legal-body li { margin-bottom: 0.4rem; }
details.legal .legal-body strong { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; text-align: center; box-shadow: 0 2px 10px rgba(44, 58, 10, 0.04);
}
.contact-card .card-icon { margin: 0 auto 0.9rem; }
.contact-card h3 { font-size: 1.05rem; color: var(--brand-deep); margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.92rem; color: var(--muted); }
.contact-card a { font-weight: 600; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-deep); color: rgba(255, 255, 255, 0.8); padding: 2.4rem 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between;
}
.footer-brand { font-weight: 700; color: #fff; }
.footer-brand small { display: block; font-weight: 400; font-size: 0.8rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 720px) {
  .main-nav a:not(.nav-cta) { display: none; }
  .hero { padding: 3.5rem 0 3rem; }
  section.block { padding: 3rem 0; }
  .step-head .price { margin-left: 0; width: 100%; }
}

/* ---------- Impressum ---------- */
.imprint-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.3rem; }
.imprint-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.7rem; box-shadow: 0 2px 10px rgba(44, 58, 10, 0.04);
}
.imprint-card h3 { font-size: 1.1rem; color: var(--brand-deep); margin-bottom: 1rem; }
.imprint-card address { font-style: normal; line-height: 1.7; }
.imprint-card dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.45rem 1.1rem; }
.imprint-card dt { font-weight: 600; color: var(--ink); white-space: nowrap; }
.imprint-card dd { color: var(--muted); }
.imprint-card p { color: var(--muted); }
