/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #ffffff;
  --grey-light: #f4f4f4;
  --grey-mid:   #e8e8e8;
  --dark:       #333333;
  --red:        #C80F0F;
  --red-dark:   #a00c0c;
  --text:       #222222;
  --muted:      #666666;
  --max-w:      1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ===== NAVIGATION ===== */
.nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-dark) !important; text-decoration: none !important; }

/* Mobile-Menü-Button (nur auf Mobile sichtbar) */
.nav-burger { display: none; }

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 72px 0 40px;
  overflow: hidden;
}

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

.hero-text { padding-bottom: 72px; }

.hero-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--dark);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 480px;
}

.hero-proof {
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 36px;
}

.hero-proof span {
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--red-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-outline {
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

.hero-image {
  position: relative;
  align-self: end;
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  display: block;
}

/* ===== STATS BANNER ===== */
.stats-banner {
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--grey-mid);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== SECTION BASICS ===== */
section { padding: 80px 0; }

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

.section-header { text-align: center; margin-bottom: 52px; }

.section-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}

/* ===== SERVICE TILES ===== */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tile {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--grey-mid);
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.tile:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.tile-icon {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.tile-icon svg { width: 30px; height: 30px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.tile h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.tile p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ===== USP LIST ===== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.usp-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--grey-mid);
  transition: box-shadow 0.2s, transform 0.2s;
}
.usp-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.usp-check {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.usp-check svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.usp-item p { font-size: 16px; color: var(--text); line-height: 1.6; }

/* ===== ABOUT TEASER ===== */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-teaser img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}

.about-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.link-arrow {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow:hover { text-decoration: underline; }

/* ===== CONTACT CTA BLOCK ===== */
.contact-cta-block {
  background: var(--dark);
  padding: 64px 0;
  text-align: center;
}

.contact-cta-block h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact-cta-block p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-size: 16px;
}

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.contact-links a {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-links a:hover { color: var(--white); text-decoration: underline; }

.contact-links svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--grey-light);
  padding: 60px 0;
  border-bottom: 1px solid var(--grey-mid);
}

.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
}

/* ===== LEISTUNGEN PAGE ===== */
.service-section { padding: 60px 0; border-bottom: 1px solid var(--grey-mid); }
.service-section:last-of-type { border-bottom: none; }

/* 2-Spalten-Raster auf der Leistungsseite */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 36px;
  scroll-margin-top: 80px;
}

.service-grid .service-section {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid #cccccc;
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-grid .service-section:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-grid .service-section:last-of-type {
  border: 1px solid #cccccc;
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
}

.service-section--full {
  grid-column: 1 / -1;
  background: var(--white);
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #888888;
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  margin-top: 0;
  padding: 40px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-section--full:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-section p { color: var(--muted); margin-bottom: 20px; font-size: 16px; }

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  padding-left: 24px;
  position: relative;
  color: var(--text);
  font-size: 15px;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* ===== ÜBER CATHERINE PAGE ===== */
.empathy-block {
  border: 1px solid var(--grey-mid);
  border-left: 4px solid var(--red);
  padding: 32px 36px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}

.empathy-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.empathy-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.empathy-block li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
}

.empathy-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.fact-card {
  background: var(--dark);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}

.fact-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.fact-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.strengths-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.strengths-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--grey-mid);
  font-size: 15px;
  color: var(--text);
}

.strengths-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.testimonial-placeholder {
  background: var(--grey-light);
  border: 2px dashed var(--grey-mid);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}

.quote-block {
  position: relative;
  background: var(--grey-light);
  border-radius: 8px;
  border-left: 4px solid var(--red);
  padding: 36px 40px 36px 48px;
}

.quote-block::before {
  content: '\201C';
  font-size: 72px;
  color: var(--red);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.quote-block p {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

/* ===== KUNDENFOKUS ===== */
.customer-focus {
  background: var(--white);
  padding: 64px 0;
}

/* ===== PORTRAIT BREAK ===== */
.portrait-break {
  background: var(--grey-light);
  padding: 64px 0;
}

.portrait-break-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.portrait-break--combined .portrait-break-inner {
  grid-template-columns: 380px 1fr;
  align-items: start;
}

.portrait-break--combined .portrait-break-image img {
  height: 560px;
  object-position: center center;
}

.portrait-break--combined .portrait-break-quote {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  border-top: 1px solid var(--grey-mid);
  padding-top: 20px;
  margin-top: 4px;
}

.empathy-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.empathy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.empathy-list li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.empathy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.empathy-cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}

.portrait-break-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portrait-break-quote {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
  font-style: italic;
}

.portrait-break-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portrait-break-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
}

@media (max-width: 768px) {
  .portrait-break-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .portrait-break-image { order: -1; }
  .portrait-break-image img { height: 300px; }
  .portrait-break { padding: 48px 0; }
  .portrait-break--combined .portrait-break-inner { grid-template-columns: 1fr; }
  .portrait-break--combined .portrait-break-image { order: -1; }
  .portrait-break--combined .portrait-break-image img { height: 340px; object-position: center top; }
}

.customer-focus-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.customer-focus h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.customer-focus-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  padding: 28px 26px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  position: relative;
  background: var(--grey-light);
  border-radius: 10px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -18px;
  right: 14px;
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.1;
  pointer-events: none;
}

.testimonial-quote-mark {
  display: none;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  font-style: italic;
  flex: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-mid);
}

.testimonial-author::before {
  content: '';
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200,15,15,0.12);
  border-left: 3px solid var(--red);
  flex-shrink: 0;
}

.testimonial-role {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}

/* 5th strength item: center when alone in row */
.strengths-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 8px);
}

/* ===== ÜBER CATHERINE TEASER (Leistungsseite) ===== */
.about-trust-section {
  background: var(--grey-light);
  border-top: 1px solid var(--grey-mid);
}

.about-trust-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
  padding: 56px 0 48px;
}

.about-trust-text h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.about-trust-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.about-trust-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  display: block;
}

/* Größeres Foto nur auf der Über-Catherine-Seite */
.about-trust-section--lg {
  background: var(--white);
  border-top: none;
}

.about-trust-section--lg .about-trust-inner {
  grid-template-columns: 1fr 420px;
  gap: 48px;
}

.about-trust-section--lg .about-trust-image img {
  height: 440px;
}

.about-trust-section--lg .about-trust-points {
  grid-template-columns: 1fr;
  gap: 14px;
}

.about-trust-section--lg .trust-point span {
  font-size: 16px;
  line-height: 1.5;
}

.about-trust-section--lg .trust-point svg {
  width: 19px;
  height: 19px;
}

.about-trust-stats {
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  padding: 28px 0 48px;
}

.about-trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--grey-mid);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-stat:last-child { border-right: none; }

.about-stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-stat-lbl {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

.about-trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  margin: 20px 0 24px;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.trust-point svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}

.trust-point span {
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

/* ===== LOGO CAROUSEL ===== */
.logo-carousel-section {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  overflow: hidden;
}

.logo-carousel-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.logo-track-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.logo-track-wrapper::before,
.logo-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.logo-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.logo-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
  align-items: center;
}

.logo-track:hover { animation-play-state: paused; }

@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
  width: 130px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wenn echte Logos eingebunden: img-Tag mit src="images/logo-X.png" */
.logo-item img {
  max-width: 130px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: opacity 0.25s, filter 0.25s;
}

.logo-item img:hover {
  opacity: 0.75;
  filter: grayscale(30%);
}

/* Placeholder-Styling (entfernen sobald echte Logos vorhanden) */
.logo-placeholder {
  width: 130px;
  height: 52px;
  border: 1.5px dashed var(--grey-mid);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #ccc;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
  background: var(--grey-light);
  padding: 56px 0;
}

.social-section .section-header {
  margin-bottom: 32px;
}

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

.social-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.social-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
  text-decoration: none;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.social-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.social-info span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 48px 0; }
  .about-trust-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
  }
  .about-trust-section--lg .about-trust-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-trust-section--lg .about-trust-image img { height: 280px; }
  .about-trust-image { order: -1; }
  .about-trust-image img { height: 260px; }
  .about-trust-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-stat:last-child { border-bottom: none; }
  .about-trust-points { grid-template-columns: 1fr; gap: 10px; }
  .strengths-list { grid-template-columns: 1fr; }
  .strengths-list li:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .benefit-card {
    max-width: 100%;
  }
  .customer-focus { padding: 40px 0 16px; }
  .social-grid { grid-template-columns: 1fr; }
  .social-section { padding: 40px 0; }
}

/* ===== KONTAKT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-mid);
  text-decoration: none;
  color: var(--text);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.contact-detail:hover { color: var(--red); text-decoration: none; }

.contact-detail strong { font-size: 12px; color: var(--muted); display: block; margin-bottom: 2px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

.contact-detail span { font-size: 17px; font-weight: 600; }

.contact-form h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }

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

.form-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
}

.form-privacy input { width: auto; flex-shrink: 0; margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 40px 0;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer a { color: rgba(255,255,255,0.6); }
.footer a:hover { color: var(--white); text-decoration: none; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--white); }

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text { padding-bottom: 32px; }
  .hero-image { display: block; }
  .hero-image img { height: 380px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tiles-grid { grid-template-columns: 1fr; }
  .br-desktop { display: none; }
  .usp-grid { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }

  /* Mobile-Navigation: Hamburger-Menü (ohne JavaScript) */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin: -10px;
    padding: 10px;
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
  }
  .nav-cta {
    margin: 8px 24px;
    text-align: center;
  }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Lange E-Mail im dunklen CTA-Block nicht überlaufen lassen */
  .contact-links { gap: 16px; }
  .contact-links a { font-size: 15px; word-break: break-word; }

  /* Leistungsseite: Raster auf Mobile einspaltig */
  .service-grid { grid-template-columns: 1fr; column-gap: 16px; row-gap: 20px; }
  .service-grid .service-section { padding: 28px 20px; }
  .service-section--full { padding: 28px 20px; margin-top: 0; }
}
