/* ============================================================
   Design System – daniel-marx.net
   Farben: Navy (Seriosität) · Grün (Vereine/Soziales) · Amber (CTA)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:       #1a3557;
  --navy-dark:  #112340;
  --navy-light: #2a4f7a;
  --green:      #2d7d4f;
  --green-light:#3a9d63;
  --amber:      #d4820a;
  --amber-light:#e8a020;
  --bg:         #f8f7f4;
  --bg-white:   #ffffff;
  --bg-light:   #f0ede8;
  --text:       #1a1a1a;
  --text-mid:   #4a5568;
  --text-light: #6b7280;
  --border:     #ddd8d0;

  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(26,53,87,0.08);
  --shadow:    0 4px 20px rgba(26,53,87,0.10);
  --shadow-lg: 0 8px 40px rgba(26,53,87,0.14);

  --max-w: 1100px;
  --section-gap: 90px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-light); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3rem);    font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); font-size: 1rem; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-mid);
  max-width: 660px;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-gap) 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-header {
  max-width: 700px;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header.centered { margin: 0 auto 56px; text-align: center; }
.section-header.centered .lead { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,130,10,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--bg-light);
  color: var(--navy-dark);
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--bg-light); }
.nav-links .btn { margin-left: 8px; padding: 8px 18px; font-size: 0.88rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-mobile a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background 0.15s;
}
.nav-mobile a:hover { background: var(--bg-light); color: var(--navy); }
.nav-mobile .btn { margin-top: 8px; justify-content: center; }

/* ── Hero ── */
.hero {
  padding: 140px 0 90px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-light);
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,0.8); margin-bottom: 36px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(4px);
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-title .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-light);
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(45,125,79,0.25);
  border: 1px solid rgba(45,125,79,0.4);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.85);
}
.hero-badge svg { flex-shrink: 0; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Services ── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s;
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(26,53,87,0.2);
}
.service-card.highlight {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.service-card.highlight::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px; right: 20px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 12px;
  border-radius: 100px;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}

.service-card h3 { margin-bottom: 10px; }
.service-card p  { font-size: 0.92rem; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 7px; }
.service-list li {
  font-size: 0.87rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Why me ── */
.why-me { background: var(--navy-dark); }
.why-me h2, .why-me .section-label { color: #fff; }
.why-me .section-label { color: var(--green-light); }
.why-me .section-header .lead { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--amber-light);
}
.why-item h4 { color: #fff; margin-bottom: 6px; }
.why-item p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ── Process ── */
.process { background: var(--bg-white); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
}

.step {
  text-align: center;
  position: relative;
  padding-top: 8px;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}
.step h4 { margin-bottom: 8px; }
.step p  { font-size: 0.87rem; }

/* ── Vereine (social) ── */
.vereine {
  background: linear-gradient(135deg, var(--green) 0%, #1e5c38 100%);
  position: relative;
  overflow: hidden;
}
.vereine::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.vereine-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.vereine h2 { color: #fff; margin-bottom: 16px; }
.vereine .lead { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.vereine .section-label { color: rgba(255,255,255,0.6); }

.vereine-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.vereine-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
}
.vereine-point svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.6); }

.vereine-example {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px;
}
.vereine-example h4 { color: #fff; margin-bottom: 16px; }
.vereine-example-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.vereine-example-item:last-child { border: none; }
.vereine-example-item strong { color: #fff; }
.tag-gruen {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 500;
}

/* ── References ── */
.references { background: var(--bg); }
.references-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ref-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s;
}
.ref-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ref-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.ref-tag.verein { background: rgba(45,125,79,0.12); color: var(--green); }
.ref-tag.business { background: rgba(26,53,87,0.1); color: var(--navy); }

.ref-card h3 { margin-bottom: 8px; }
.ref-card p  { font-size: 0.9rem; margin-bottom: 20px; }
.ref-features { display: flex; flex-wrap: wrap; gap: 8px; }
.ref-feature {
  font-size: 0.78rem;
  background: var(--bg-light);
  color: var(--text-mid);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: 70px 0;
}
.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-banner .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover { box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.price-card.featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.price-card h3 { margin-bottom: 8px; }
.price-desc { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 24px; }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-amount .currency { font-size: 1rem; color: var(--text-mid); }
.price-amount .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.price-amount .period { font-size: 0.85rem; color: var(--text-light); }
.price-note { font-size: 0.78rem; color: var(--text-light); margin-bottom: 24px; }

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.price-features li.muted { color: var(--text-light); }
.price-features li.muted::before { color: var(--border); }

.price-card .btn { width: 100%; justify-content: center; }

.price-entry-note {
  margin-top: 48px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.price-entry-note-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.price-entry-note h4 { margin-bottom: 6px; }
.price-entry-note p  { font-size: 0.9rem; margin: 0; }

/* ── Process detail page ── */
.process-steps-full { display: flex; flex-direction: column; gap: 0; }
.process-step-full {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step-full:last-child { border: none; }
.process-step-full-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-step-full h3 { margin-bottom: 8px; }
.process-step-full p  { font-size: 0.93rem; }

/* ── Contact ── */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info .lead { margin-bottom: 32px; }
.contact-points { display: flex; flex-direction: column; gap: 16px; }
.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-point-icon {
  width: 44px; height: 44px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-point h4 { font-size: 0.9rem; margin-bottom: 2px; }
.contact-point p  { font-size: 0.85rem; margin: 0; }

.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group select { cursor: pointer; }

.form-success {
  display: none;
  background: rgba(45,125,79,0.08);
  border: 1px solid rgba(45,125,79,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 16px;
}
.form-error {
  display: none;
  background: rgba(180,30,30,0.07);
  border: 1px solid rgba(180,30,30,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #b41e1e;
  margin-bottom: 16px;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── Legal pages (AGB, Impressum) ── */
.legal-page { background: var(--bg-white); }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
}
.legal-content h2 {
  font-size: 1.1rem;
  margin: 32px 0 10px;
  font-family: var(--font-body);
  font-weight: 600;
}
.legal-content p, .legal-content li {
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 120px 0 60px;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.75); }
.page-hero .section-label { color: var(--green-light); }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

.bg-white  { background: var(--bg-white); }
.bg-light  { background: var(--bg-light); }

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --section-gap: 64px; }

  .hero-inner       { grid-template-columns: 1fr; }
  .hero-card        { display: none; }
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .steps            { grid-template-columns: repeat(2, 1fr); }
  .steps::before    { display: none; }
  .vereine-inner    { grid-template-columns: 1fr; }
  .references-grid  { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links        { display: none; }
  .nav-burger       { display: flex; }
  .nav-mobile.open  { display: flex; }
  .hero             { padding: 110px 0 60px; }
  .footer-grid      { grid-template-columns: 1fr; }
  .steps            { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .trust-bar-inner  { gap: 20px; }
  .price-entry-note { flex-direction: column; }
}
