/* ============================================================
   Thomas Mündlein Reinigung – Hauptstylesheet
   Farbschema: Blau (#0F2F4A / #1E6FA8 / #2D9CDB / #EAF5FC)
   ============================================================ */

/* --- Variablen --- */
:root {
  --color-primary:       #0F2F4A;
  --color-primary-mid:   #1E6FA8;
  --color-primary-light: #EAF5FC;
  --color-accent:        #2D9CDB;
  --color-accent-dark:   #1A7AB8;
  --color-text:          #1F2933;
  --color-text-light:    #5A6878;
  --color-bg:            #FFFFFF;
  --color-bg-light:      #F6F8FA;
  --color-border:        #E2E8F0;
  --color-white:         #FFFFFF;

  --font-family: 'Inter', system-ui, -apple-system, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm:  0 1px 4px rgba(15,47,74,.06);
  --shadow-md:  0 4px 16px rgba(15,47,74,.10);
  --shadow-lg:  0 8px 32px rgba(15,47,74,.14);
  --shadow-xl:  0 16px 48px rgba(15,47,74,.16);

  --spacing-xs:  0.5rem;
  --spacing-sm:  1rem;
  --spacing-md:  2rem;
  --spacing-lg:  3.5rem;
  --spacing-xl:  5rem;
  --spacing-xxl: 7rem;

  --container-max: 1160px;
  --transition:    all 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent-dark); }
ul, ol { list-style: none; }
address { font-style: normal; }

/* --- Typografie --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--color-text); }
h1 { font-size: clamp(1.85rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); }
p  { max-width: 65ch; }

.lead {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-xs);
  display: block;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-light   { background: var(--color-bg-light); }
.section-primary { background: var(--color-primary); }
.section-primary h2, .section-primary h3 { color: var(--color-white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}
.section-header h2  { margin-bottom: 0.75rem; }
.section-header .lead { margin: 0 auto; }

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-family);
  font-size: 0.975rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* Primär – dunkles Blau */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: #0a1e30;
  border-color: #0a1e30;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Akzent – helles Blau (Haupt-CTA) */
.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,156,219,.35);
}

/* Outline – auf hellem Hintergrund */
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Outline Weiß – auf dunklem Hintergrund */
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Sekundär (Fallback) */
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary); color: var(--color-white); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.875rem; }

/* Text-Link Button */
.btn-link {
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.btn-link:hover { color: var(--color-accent-dark); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 8px rgba(15,47,74,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0.5rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 64px;
  max-height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  min-width: 0;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-light);
  display: block;
}

.logo img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.main-nav a:hover { color: var(--color-accent); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
  gap: 0.25rem;
}

.mobile-nav a {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 1rem; width: 100%; text-align: center; }

/* --- Hero --- */
.hero {
  padding: var(--spacing-xl) 0 var(--spacing-xxl);
  background: linear-gradient(145deg, #EAF5FC 0%, #F6F8FA 50%, #ffffff 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--spacing-lg);
}

.hero-content, .hero-visual { min-width: 0; }

.hero-content { max-width: 580px; }
.hero-content h1 { margin-bottom: 1rem; color: var(--color-primary); }
.hero-content .lead { margin-bottom: 1.5rem; }

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.hero-bullets li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  padding-left: 1.5rem;
  position: relative;
}

.hero-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-trust-line {
  font-size: 0.8rem;
  color: var(--color-text-light);
  max-width: none;
}

.hero-trust-line::before { content: none; }

/* Team-Foto */
.team-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.team-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Visual */
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }

.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--color-primary-light);
  aspect-ratio: 4/3;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Wenn kein Bild vorhanden: Platzhalter-Stil */
.hero-img:not(:has(img[src*=".webp"])),
.hero-img img[src*="hero/reinigung"] {
  min-height: 320px;
}

.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.hero-service-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  box-shadow: var(--shadow-sm);
}

.badge-icon { font-size: 1rem; flex-shrink: 0; }

/* --- Problem-Sektion --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.problem-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  transition: var(--transition);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.problem-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.problem-card p  { font-size: 0.9rem; color: var(--color-text-light); max-width: none; }

/* --- Mechanismus --- */
.mechanism-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--spacing-md);
}

.mechanism-step {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  transition: var(--transition);
}

.mechanism-step:hover { box-shadow: var(--shadow-md); background: var(--color-white); }

.step-num {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.mechanism-step h3 { font-size: 0.975rem; margin-bottom: 0.5rem; }
.mechanism-step p  { font-size: 0.875rem; color: var(--color-text-light); max-width: none; }

.step-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--color-accent);
  padding: 0 0.25rem;
  margin-top: 2.5rem;
  align-self: flex-start;
}

.trust-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
  max-width: none;
}

/* --- Leistungs-Karten --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-primary-light);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.card p  { font-size: 0.9rem; color: var(--color-text-light); max-width: none; }

/* --- Zielgruppen-Split --- */
.zielgruppen-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.zielgruppe-panel {
  padding: 3rem 2.5rem;
  min-width: 0;
}

.zielgruppe-panel--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.zielgruppe-panel--dark h3 { color: var(--color-white); }
.zielgruppe-panel--dark p  { color: rgba(255,255,255,.75); max-width: none; }

.zielgruppe-panel--light {
  background: var(--color-primary-light);
}

.zielgruppe-panel--light h3 { color: var(--color-primary); }
.zielgruppe-panel--light p  { color: var(--color-text-light); max-width: none; }

.panel-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

.zielgruppe-panel h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.zielgruppe-panel p  { margin-bottom: 1.5rem; }

.zielgruppe-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.zielgruppe-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
  padding-left: 1.25rem;
  position: relative;
}

.zielgruppe-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.zielgruppe-list--dark li { color: var(--color-text-light); }
.zielgruppe-list--dark li::before { color: var(--color-primary-mid); }

/* --- Warum-Wir (dark section) --- */
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.why-icon { font-size: 1.75rem; margin-bottom: 0.875rem; display: block; }

.why-card h3 { color: var(--color-white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-card p  { color: rgba(255,255,255,.7); font-size: 0.9rem; max-width: none; }

/* --- Ablauf --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step { text-align: center; }

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p  { font-size: 0.875rem; color: var(--color-text-light); }

/* --- Branchen --- */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.branchen-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.branchen-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.branchen-card-icon { font-size: 2rem; margin-bottom: 0.25rem; }
.branchen-card h3   { font-size: 0.975rem; }
.branchen-card p    { font-size: 0.85rem; color: var(--color-text-light); max-width: none; flex: 1; }

/* --- Vertrauens-Features --- */
.trust-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--spacing-md);
}

.trust-feature {
  flex: 1 1 calc(33.333% - 0.667rem);
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.trust-feature-icon { font-size: 1.25rem; flex-shrink: 0; }

.trust-placeholder {
  text-align: center;
  padding: 2rem;
  background: var(--color-bg-light);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.cert-badge img {
  width: 130px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.cert-badge-text h3 { margin-bottom: 0.35rem; }
.cert-badge-text p { color: var(--color-text-light); font-size: 0.9rem; margin: 0; }

/* --- CTA Zwischen --- */
.cta-between {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.cta-between-inner h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-between-inner p  { color: rgba(255,255,255,.75); margin: 0 auto 2rem; max-width: 540px; }

/* --- CTA Abschluss --- */
.cta-section {
  background: var(--color-primary);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.cta-inner h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.75); margin: 0 auto 2rem; max-width: 520px; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  max-width: none;
}

/* --- Kontakt-Formular-Sektion --- */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.contact-section-info,
.contact-section-form { min-width: 0; }

.contact-section-info h2 { margin-bottom: 0.75rem; }
.contact-section-info p  { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.contact-detail a { color: var(--color-text); font-weight: 500; }
.contact-detail a:hover { color: var(--color-accent); }

.contact-note {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  border: 1px solid #c8e6f5;
}

.contact-note h4 { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--color-primary); }
.contact-note ul { display: flex; flex-direction: column; gap: 0.35rem; }

.contact-note li {
  font-size: 0.875rem;
  color: var(--color-primary-mid);
  padding-left: 1.25rem;
  position: relative;
}

.contact-note li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.contact-section-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* --- Formular --- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.optional {
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 0.975rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6878' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(45,156,219,.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  height: auto;
  padding: 0;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.form-checkbox label {
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.form-checkbox a { color: var(--color-accent); text-decoration: underline; }

.form-microcopy {
  font-size: 0.775rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
  text-align: center;
  max-width: none;
}

/* --- FAQ --- */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-family);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question::after { content: '−'; }

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--color-text-light);
  font-size: 0.925rem;
  line-height: 1.75;
  max-width: none;
}

.faq-item.open .faq-answer { display: block; }

/* --- Footer --- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,.8);
  padding-top: var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--spacing-lg);
}

.footer-brand .logo-text { display: block; color: var(--color-white); font-size: 1.05rem; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.5); }

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 210px;
  margin-bottom: 1rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
}

.footer-logo img {
  width: 180px;
  height: auto;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  margin: 1rem 0;
  max-width: 280px;
}

.footer-brand address a {
  color: rgba(255,255,255,.75);
  font-size: 0.875rem;
  line-height: 2;
  display: block;
}

.footer-brand address a:hover { color: var(--color-accent); }

.footer-nav h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-nav a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  padding: 0.3rem 0;
}

.footer-nav a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  max-width: none;
}

/* --- Danke-Seite --- */
.danke-hero { text-align: center; padding: var(--spacing-xxl) 0; }
.danke-icon { font-size: 4rem; margin-bottom: 1.5rem; }

/* --- Legal --- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}
.legal-content h1 { margin-bottom: var(--spacing-md); }
.legal-content h2 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.legal-content p  { color: var(--color-text-light); margin-bottom: 1rem; max-width: none; }
.legal-content a  { text-decoration: underline; }

/* --- Inline CTA --- */
.inline-cta {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  margin: 2rem 0;
}
.inline-cta h3 { margin-bottom: 0.75rem; }
.inline-cta p  { color: var(--color-text-light); font-size: 0.925rem; margin-bottom: 1rem; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.mt-sm  { margin-top: var(--spacing-sm); }
.mt-md  { margin-top: var(--spacing-md); }
.mt-lg  { margin-top: var(--spacing-lg); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* --- Blog --- */
.blog-hero {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg-light) 100%);
  padding: 4rem 0;
  text-align: center;
}
