
:root {
  --green-dark:#14532d;
  --green:#15803d;
  --green-light:#dcfce7;
  --beige:#fefce8;
  --text:#111827;
}

* { box-sizing:border-box; }

body {
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:#ffffff;
  line-height:1.7;
  font-size:18px;
}

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

.wrapper {
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.site-header {
  background: var(--green-dark);
  color: #fff;
}

.topbar {
  font-size:0.9rem;
  padding:6px 0;
  background:#022c22;
}

.topbar .container {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:8px;
}

.brand-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0 10px;
  gap:16px;
  flex-wrap:wrap;
}

.logo-mark {
  width:52px;
  height:52px;
  border-radius:12px;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:1.6rem;
}

.brand-text h1 { margin:0; font-size:1.6rem; }
.brand-text p { margin:2px 0 0; font-size:0.95rem; }

.main-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgba(20,83,45,0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.main-nav .container {
  display:flex;
  gap:4px;
  flex-wrap:wrap;
  padding:8px 20px;
}

.main-nav a {
  color:#e5e7eb;
  text-decoration:none;
  padding:8px 14px;
  border-radius:999px;
  font-size:0.96rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  background:#facc15;
  color:#1f2937;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left,#bbf7d0 0,#fefce8 55%,#ffffff 100%);
  padding:40px 0 30px;
}

/* Hintergrund wie im Hero über die ganze Seite ab 'Ihre Hilfe im Alltag' */
main {
  background: radial-gradient(circle at top left,#bbf7d0 0,#fefce8 55%,#ffffff 100%);
  padding-bottom: 40px;
}

/* Alt-Sektionen sollen den Hintergrund nicht überschreiben */
.section.alt { background: transparent; }


.hero-inner {
  display:grid;
  grid-template-columns: minmax(0,2.1fr) minmax(0,1.6fr);
  gap:32px;
  align-items:center;
}

.hero h2 {
  font-size:2.1rem;
  color:var(--green-dark);
  margin-top:0;
}

.hero-badges {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:16px 0 24px;
}

.badge {
  background:#ecfccb;
  border-radius:999px;
  padding:6px 12px;
  font-size:0.9rem;
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:12px;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border:none;
  text-decoration:none;
  font-weight:600;
  cursor:pointer;
  font-size:1rem;
}

.btn-primary { background:var(--green); color:#fff; }
.btn-primary:hover { background:#16a34a; }

.btn-secondary {
  background:#ffffff;
  color:var(--green-dark);
  border:1px solid #d1d5db;
}

.hero-note {
  font-size:0.9rem;
  color:#4b5563;
}

.hero-card {
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  padding:20px 18px 18px;
}

/* Sections */

.section { padding:36px 0; }
.section.alt { background:#f9fafb; }

.section-header { margin-bottom:18px; }
.section-kicker {
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:#6b7280;
  font-size:0.8rem;
}
.section h2 {
  margin:4px 0 6px;
  font-size:1.6rem;
  color:var(--green-dark);
}
.section-sub { margin:0; color:#4b5563; font-size:0.98rem; }

/* Cards */

.card-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap:18px;
  margin-top:14px;
}

.card {
  background:#ffffff;
  border-radius:18px;
  padding:16px 16px 18px;
  border:1px solid #e5e7eb;
}

.card-tag {
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:#6b7280;
}

/* Lists / prices */

.icon-list {
  list-style:none;
  padding:0;
  margin:10px 0 0;
}
.icon-list li {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
}
.icon-bullet {
  width:26px;
  height:26px;
  border-radius:999px;
  background:#dcfce7;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
}

.price-table {
  width:100%;
  border-collapse:collapse;
  margin-top:12px;
  font-size:0.96rem;
}
.price-table th,
.price-table td {
  padding:10px 10px;
  border-bottom:1px solid #e5e7eb;
}
.price-table th {
  text-align:left;
  background:#ecfccb;
}
.price-note {
  font-size:0.9rem;
  color:#4b5563;
  margin-top:10px;
}

/* Layout blocks */

.about-layout {
  display:grid;
  grid-template-columns: minmax(0,2.2fr) minmax(0,1.5fr);
  gap:24px;
}

.about-box {
  background:rgba(220,252,231,0.95);
  border-radius:16px;
  padding:14px 16px;
  font-size:0.95rem;
}

.contact-layout {
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(0,1.6fr);
  gap:24px;
}

.contact-list {
  list-style:none;
  padding:0;
  margin:12px 0 0;
}
.contact-list li { margin-bottom:8px; }

.contact-hint {
  font-size:0.9rem;
  color:#4b5563;
  margin-top:10px;
}

.contact-box {
  background:#f9fafb;
  border-radius:16px;
  padding:14px 16px 18px;
}
.contact-box label {
  display:block;
  font-size:0.9rem;
  margin-bottom:4px;
}
.contact-box input,
.contact-box textarea {
  width:100%;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid #d1d5db;
  font-size:0.95rem;
}
.contact-box textarea {
  min-height:110px;
  resize:vertical;
}

/* Footer */

.site-footer {
  background:#022c22;
  color:#e5e7eb;
  padding:18px 0 14px;
  margin-top:auto;
  font-size:0.9rem;
}

.footer-top {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(148,163,184,0.5);
  margin-bottom:8px;
}

.footer-links {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a {
  color:#cbd5f5;
  text-decoration:none;
}
.footer-links a:hover { text-decoration:underline; }

.footer-bottom {
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}

.muted { color:#6b7280; }



/* Startseite: Ablauf & FAQ */

.steps-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:18px;
  margin-top:14px;
}

.step-card {
  background:#ffffff;
  border-radius:18px;
  padding:16px 16px 18px;
  border:1px solid #e5e7eb;
}

.step-number {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:999px;
  background:#dcfce7;
  font-weight:600;
  font-size:0.9rem;
  margin-bottom:8px;
  color:var(--green-dark);
}

.faq-list {
  margin-top:12px;
}

.faq-item {
  background:#ffffff;
  border-radius:16px;
  padding:10px 12px;
  border:1px solid #e5e7eb;
  margin-bottom:10px;
  font-size:0.95rem;
}

.faq-item strong {
  display:block;
  margin-bottom:4px;
  color:var(--green-dark);
}

@media (max-width: 780px) {
  .hero-inner,
  .about-layout,
  .contact-layout {
    grid-template-columns:1fr;
  }
}
