/* ============================================================
   KRECK CONSULTING — Stylesheet
   Zwei Farbthemen wählbar:
   • Standard  : Bronze  (data-theme="bronze")
   • Alternative: Slate-Blau (data-theme="slate")
   ============================================================ */

/* ── Google Fonts werden im HTML-Head eingebunden ── */

/* ── 1. CSS-Variablen / Farbthemen ─────────────────────────── */
:root,
[data-theme="bronze"] {
  --primary:        #a9865d;
  --primary-dark:   #8a6b48;
  --primary-light:  #c4a47e;
  --primary-pale:   #e8e7e5;   /* Steingrau — kein Beige */
  --primary-text:   #ffffff;   /* Textfarbe auf primary-Hintergrund */
}

[data-theme="slate"] {
  --primary:        #1e4d6b;
  --primary-dark:   #153b54;
  --primary-light:  #2d6d96;
  --primary-pale:   #e6eff5;
  --primary-text:   #ffffff;
}

/* Neutrale Farben (beide Themen) */
:root {
  --dark:           #1a1a1a;
  --text:           #3d3d3d;
  --text-light:     #666666;
  --border:         #dededd;   /* neutraler, kein Beige-Stich */
  --bg-light:       #f3f2f1;   /* sehr helles Steingrau */
  --white:          #ffffff;

  --font-heading:   'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-body:      'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --max-width:      1200px;
  --radius:         4px;
  --shadow:         0 2px 20px rgba(0,0,0,0.08);
  --nav-height:     72px;
  --transition:     0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── 3. Utility ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 31px;
  border-radius: var(--radius);
  border: 1.5px solid var(--primary);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--primary-text);
}

/* ── 4. Navigation ──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links .lang-switch a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5px 10px;
  margin-left: 8px;
  transition: all var(--transition);
}
.nav-links .lang-switch a:hover {
  background: var(--primary);
  color: var(--primary-text);
  border-color: var(--primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
  font-size: 1.4rem;
}

/* ── 5. Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(90vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-image {
  position: relative;
  order: 2;
  display: flex;
  align-items: stretch;
  padding: 128px 0 128px 24px;
}
@media (max-width: 900px) {
  .hero-image {
    padding: 0;
  }
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(160deg, var(--primary-pale) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
}
.hero-content {
  order: 1;
  display: flex;
  align-items: stretch;
  background: var(--white);
}
.hero-content-inner {
  width: 100%;
  max-width: calc(var(--max-width) / 2);
  margin-left: auto;
  padding: 48px 64px 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content .section-label { margin-bottom: 1rem; }
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 3rem;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--primary);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ── 6. Pillars / 3-Spalten ─────────────────────────────────── */
.pillars {
  padding: 72px 0;
  background: var(--bg-light);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  display: block;
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
}
.pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.pillar p { font-size: 0.9rem; color: var(--text-light); }

/* ── 7. Quote / Testimonial ─────────────────────────────────── */
.quote-section {
  padding: 80px 0;
  background: var(--primary);
}
.quote-section blockquote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-section blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
  color: var(--primary-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.quote-section blockquote cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  font-style: normal;
  text-transform: uppercase;
}

/* ── 8. CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ── 9. Page Header (Unterseiten) ───────────────────────────── */
.page-header {
  padding: 60px 0 48px;
  background: var(--primary-pale);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.page-header .lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ── 10. Fließtext-Sektion ──────────────────────────────────── */
.content-section {
  padding: 72px 0;
}
.content-section + .content-section {
  padding-top: 0;
}
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-grid-aside {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.prose h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.prose p { margin-bottom: 1rem; font-size: 1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1rem;
}
.prose ul li {
  padding: 2px 0 2px 20px;
  position: relative;
  font-size: 0.975rem;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.prose strong { color: var(--dark); font-weight: 600; }

/* ── 11. Abschnitt mit Bronze-Hintergrund ───────────────────── */
.section-tinted {
  padding: 64px 0;
  background: var(--primary-pale);
}

/* ── 12. Foto-Platzhalter ───────────────────────────────────── */
.photo-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder {
  background: linear-gradient(135deg, var(--primary-pale), var(--border));
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-light);
  font-size: 0.8rem;
  padding: 24px;
  border-radius: var(--radius);
}

/* ── 13. Profil-Karten (Über mich) ─────────────────────────── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px;
}
.profile-card h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.profile-card ul { list-style: none; padding-left: 0; }
.profile-card ul li {
  font-size: 0.9rem;
  padding: 3px 0 3px 18px;
  color: var(--text);
  position: relative;
}
.profile-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.motto {
  background: var(--primary);
  color: var(--primary-text);
  padding: 24px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 24px;
  line-height: 1.5;
}
.motto small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

/* ── 14. Stimmen / Testimonials ─────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: rgba(169, 134, 93, 0.35);
  line-height: 1;
}
.testimonial-card blockquote p {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}
.testimonial-card cite {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  font-style: normal;
}

/* ── 15. Kontakt-Seite ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-detail-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

/* Formular */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-notice {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 10px;
}
.form-success {
  background: #f0faf3;
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #1a7a40;
  font-size: 0.9rem;
  display: none;
}

/* ── 16. Schritt-Prozess (Ablauf) ───────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.process-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.process-step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--primary-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}
.process-step h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.process-step p { font-size: 0.8rem; color: var(--text-light); }

/* ── 17. Footer ─────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 32px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-contact {
  font-size: 0.85rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--primary-light); }
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

/* ── 18. Impressum / Datenschutz ───────────────────────────── */
.legal-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
}
.legal-content p,
.legal-content address { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.75rem; font-style: normal; }

/* ── 19. Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image { order: 1; height: 75vw; min-height: 320px; }
  .hero-content { order: 2; }
  .hero-content-inner { max-width: 100%; margin-left: 0; padding: 48px 24px; }
  .hero-content h1 { font-size: 1.75rem; }

  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }

  .content-grid-2,
  .content-grid-aside,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-height: 60px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 1rem; }
  .nav-links .lang-switch { padding: 8px 24px; }
  .nav-links .lang-switch a { margin-left: 0; }
  .nav-toggle { display: block; }
  .navbar { position: relative; }

  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }

  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary { text-align: center; }
}

/* ── 20. Seiten-Überschrift & Lead-Text (gemeinsame Klassen) ─── */
/* Ersetzt wiederholte inline style="font-family:var(--font-heading)..." */
.h2-accent,
.prose h2.h2-accent,
.page-h2.h2-accent { color: var(--primary) !important; }
.page-h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.page-lead {
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 2rem;
}
.centered-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.prose-accent {
  margin-top: 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

/* ── 21. Führungsebenen (coaching.html) ──────────────────────── */
.leadership-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.level-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  padding-top: 48px;
}
.level-marker {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--primary);
  color: var(--primary-text);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.level-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.level-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .leadership-levels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .leadership-levels { grid-template-columns: 1fr; }
}

/* ── 22. Zitat-Carousel (stimmen.html / testimonials) ───────── */
.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  flex: 1;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .testimonial-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  min-width: 280px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.carousel-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.carousel-btn-prev { left: 8px; }
.carousel-btn-next { right: 8px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.carousel-dot.active { background: var(--primary); }
@media (max-width: 640px) {
  .carousel-outer { padding: 0 44px; }
  .carousel-track .testimonial-card { flex: 0 0 85%; }
}

/* ── 23. Kontakt-Hinweisbox ──────────────────────────────────── */
.contact-hint {
  margin-top: 28px;
  padding: 20px;
  background: var(--primary-pale);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--text-light);
}
.contact-hint strong {
  color: var(--dark);
  display: block;
  margin-bottom: 6px;
}
.privacy-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.privacy-row input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}
.privacy-row label {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
  font-weight: 400;
}
.privacy-row label a { color: var(--primary); }

/* ── 24. Farb-Vergleich (nur für Konzept-Seite) ─────────────── */
.theme-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.theme-sample {
  padding: 32px 24px;
}
.theme-sample.bronze { background: #a9865d; color: white; }
.theme-sample.slate  { background: #1e4d6b; color: white; }
.theme-sample h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; margin-bottom: 6px; }
.theme-sample p  { font-size: 0.85rem; opacity: 0.8; }
