/* ============================================
   DIE AUSSENREINIGER · aussenreiniger.de
   Style aus Original-Mockup übernommen
   ============================================ */

:root {
  --primary-dark: #022239;
  --primary: #03263F;
  --primary-light: #0A3265;
  --primary-deep: #021826;

  --accent: #649E26;
  --accent-hover: #5A8E20;
  --accent-light: #70A531;
  --accent-pale: #E8F2D9;

  --warning: #E8A83C;
  --warning-bg: #FFF8E7;
  --warning-dark: #B8821C;
  --danger: #C8472E;
  --danger-bg: #FDF1EE;

  --text-dark: #022239;
  --text-body: #3D4A5C;
  --text-muted: #6B7785;
  --bg-white: #FFFFFF;
  --bg-soft: #F7F9FB;
  --bg-light: #EEF2F6;
  --border: #DDE3EA;
  --border-strong: #C5CCD4;

  --shadow-sm: 0 2px 8px rgba(2,34,57,0.06);
  --shadow-md: 0 8px 24px rgba(2,34,57,0.08);
  --shadow-lg: 0 16px 40px rgba(2,34,57,0.12);

  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
strong { color: var(--text-dark); }

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.02em; }

.text-accent { color: var(--accent); }
.text-warning { color: var(--warning-dark); }
.text-danger { color: var(--danger); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.page { display: none; }
.page[data-active="true"] { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
[hidden] { display: none !important; }

[data-image-placeholder] {
  background:
    repeating-linear-gradient(45deg, rgba(100,158,38,0.06) 0, rgba(100,158,38,0.06) 12px, rgba(100,158,38,0.03) 12px, rgba(100,158,38,0.03) 24px),
    linear-gradient(135deg, #d8e3ed, #c5d3df);
  position: relative;
  overflow: hidden;
}
.img-placeholder-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(2,34,57,0.85);
  color: white;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}

/* DEMO BANNER */
.demo-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  background: var(--primary-deep);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.demo-banner-inner { display: flex; gap: 10px; align-items: center; padding: 10px 14px; font-size: 12px; }
.demo-banner select {
  font: inherit; font-size: 11px;
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 8px; border-radius: 3px; cursor: pointer; max-width: 240px;
}
.demo-banner select option { background: var(--primary-deep); }

/* TOP BAR */
.top-bar {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px; padding: 9px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar-item { display: inline-flex; align-items: center; gap: 7px; }
.top-bar-item svg { width: 14px; height: 14px; color: var(--accent-light); }
.top-bar-cta { color: var(--accent-light); font-weight: 700; }
@media (max-width: 768px) {
  .top-bar-left { font-size: 12px; gap: 14px; }
  .top-bar-right { display: none; }
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 14px 24px; max-width: 1240px; margin: 0 auto;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 50px; height: 50px; flex-shrink: 0; }
.logo-text-block { line-height: 1.05; }
.logo-name {
  display: block; font-size: 1.5rem; font-weight: 900;
  color: var(--primary-dark); letter-spacing: -0.03em;
}

.main-nav { display: flex; gap: 30px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.main-nav a {
  font-weight: 700; font-size: 13px;
  color: var(--primary-dark); letter-spacing: 0.02em;
  padding: 12px 0; display: inline-flex; align-items: center; gap: 4px;
  text-transform: uppercase; transition: color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.main-nav a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
}
.nav-dropdown-arrow { width: 11px; height: 11px; margin-left: 2px; transition: transform .2s; }
.nav-item:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px; background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 12px;
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transition: all .25s; z-index: 50;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 10px 14px; font-size: 13px;
  border-radius: var(--radius-sm); color: var(--text-body);
  font-weight: 500; text-transform: none; letter-spacing: 0;
}
.nav-dropdown a:hover { background: var(--bg-light); color: var(--accent); }
.nav-dropdown a strong {
  display: block; color: var(--primary-dark); font-weight: 800;
  margin-bottom: 2px; font-size: 14px;
}
.nav-dropdown a:hover strong { color: var(--accent); }
.nav-dropdown a span { font-size: 11px; color: var(--text-muted); }

.btn-header-cta {
  background: var(--accent); color: white;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all .2s;
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; line-height: 1.2;
}
.btn-header-cta:hover { background: var(--accent-hover); }
.mobile-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--primary-dark); }
@media (max-width: 1100px) { .main-nav { gap: 18px; } .main-nav a { font-size: 12px; } }
@media (max-width: 980px) { .main-nav, .btn-header-cta { display: none; } .mobile-toggle { display: flex; } }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all .2s;
  cursor: pointer; white-space: nowrap; line-height: 1.2;
}
.btn-green { background: var(--accent); color: white; }
.btn-green:hover {
  background: var(--accent-hover); transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(100,158,38,0.35);
}
.btn-outline { border: 2px solid white; color: white; background: transparent; }
.btn-outline:hover { background: white; color: var(--primary-dark); }
.btn-dark-outline {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark); background: transparent;
}
.btn-dark-outline:hover { background: var(--primary-dark); color: white; }
.btn-large { padding: 18px 40px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

/* HERO */
.hero {
  position: relative; background: var(--primary-dark); color: white;
  overflow: hidden; min-height: 640px; display: flex; align-items: center;
}
.hero-bg-image { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image .img-placeholder-label { top: 25%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2,34,57,0.96) 0%, rgba(2,34,57,0.85) 38%, rgba(2,34,57,0.4) 70%, transparent 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 100px 24px; width: 100%; }
.hero-text { max-width: 680px; }
.hero h1 {
  color: white; font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900; margin-bottom: 24px;
  line-height: 0.98; letter-spacing: -0.03em; text-transform: uppercase;
}
.hero h1 .highlight { color: var(--accent-light); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 560px; line-height: 1.55;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* TRUST BAR */
.trust-bar {
  background: var(--primary-deep); color: white; padding: 22px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-circle {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--accent);
  display: grid; place-items: center;
}
.trust-circle svg { width: 18px; height: 18px; color: var(--accent); }
.trust-text {
  font-size: 13px; font-weight: 700; color: white;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.3;
}
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* SECTIONS */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--primary-dark); color: white; }
.section-warning { background: var(--warning-bg); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head p { margin-top: 14px; color: var(--text-muted); font-size: 1rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.78); }
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow-light { color: var(--accent-light); }
.eyebrow-warning { color: var(--warning-dark); }
.eyebrow-danger { color: var(--danger); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.services-grid.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.services-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (max-width: 768px) { .services-grid, .services-grid.cols-3, .services-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services-grid, .services-grid.cols-3, .services-grid.cols-4 { grid-template-columns: 1fr; } }

.service-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all .25s;
  display: flex; flex-direction: column; position: relative;
}
.service-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-img { height: 150px; position: relative; overflow: hidden; }
.service-img .img-placeholder-label { font-size: 10px; padding: 4px 8px; }
.service-icon {
  position: absolute; top: 118px; left: 18px;
  width: 56px; height: 56px; background: white;
  border-radius: 50%; display: grid; place-items: center;
  border: 4px solid white; box-shadow: var(--shadow-sm); z-index: 2;
}
.service-icon svg { width: 26px; height: 26px; color: var(--accent); }
.service-body { padding: 38px 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.service-body h3 {
  font-size: 1rem; font-weight: 800; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--primary-dark); margin: 0;
}
.service-body p { font-size: 13px; color: var(--text-body); line-height: 1.5; flex: 1; }
.service-link {
  margin-top: 8px; font-size: 12px; font-weight: 800;
  color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase;
}

/* WERTERHALT-COMPARISON */
.value-comparison {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  margin: 48px auto 0; max-width: 1000px;
}
.value-comparison-header {
  background: var(--primary-dark); color: white;
  padding: 28px; text-align: center;
}
.value-comparison-header h3 {
  color: white; font-size: 1.4rem; margin-bottom: 6px;
  font-weight: 800; text-transform: none; letter-spacing: -0.01em;
}
.value-comparison-header p { color: rgba(255,255,255,0.78); font-size: 13px; }
.value-comparison-body { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; }
@media (max-width: 768px) { .value-comparison-body { grid-template-columns: 1fr; } }

.value-side { padding: 36px 28px; }
.value-side-bad { background: var(--danger-bg); }
.value-side-good { background: var(--accent-pale); }
.value-side-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 14px;
}
.value-side-bad .value-side-icon { background: var(--danger); color: white; }
.value-side-good .value-side-icon { background: var(--accent); color: white; }
.value-side-icon svg { width: 24px; height: 24px; }
.value-side h4 {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px; font-weight: 800;
}
.value-side-bad h4 { color: var(--danger); }
.value-side-good h4 { color: var(--accent-hover); }
.value-side .price-label {
  font-size: 2.25rem; font-weight: 900; color: var(--primary-dark);
  line-height: 1.1; margin-bottom: 8px; letter-spacing: -0.025em;
}
.value-side .price-bar {
  height: 10px; border-radius: 5px; background: white;
  margin: 14px 0 18px; overflow: hidden;
}
.value-side .price-bar-fill { height: 100%; border-radius: 5px; }
.value-side-bad .price-bar-fill { background: var(--danger); width: 100%; }
.value-side-good .price-bar-fill { background: var(--accent); width: 8%; }
.value-side .feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.value-side .feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.value-side .feature-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.value-side-bad .feature-list svg { color: var(--danger); }
.value-side-good .feature-list svg { color: var(--accent); }

.value-divider {
  display: grid; place-items: center; background: white;
  font-size: 0.85rem; font-weight: 800; color: var(--text-muted);
  letter-spacing: 0.1em; padding: 16px 8px;
}
.value-divider span {
  background: white; padding: 8px 14px;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 11px; letter-spacing: 0.15em;
}
.value-comparison-footer {
  background: var(--accent); color: white;
  padding: 22px 28px; text-align: center;
}
.value-comparison-footer h4 {
  color: white; font-size: 1.3rem; margin-bottom: 6px;
  font-weight: 800; text-transform: none; letter-spacing: -0.01em;
}
.value-comparison-footer p { color: rgba(255,255,255,0.92); font-size: 13px; }

/* TIMELINE WARNING */
.timeline-warning {
  background: white; border-radius: var(--radius-lg);
  padding: 30px; margin: 32px auto; max-width: 900px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  border-left: 4px solid var(--danger);
}
.timeline-warning h3 {
  font-size: 1.15rem; color: var(--danger); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
  text-transform: none; letter-spacing: -0.01em; font-weight: 800;
}
.timeline-warning h3 svg { width: 26px; height: 26px; }
.timeline-list { display: flex; flex-direction: column; gap: 12px; }
.timeline-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 18px; align-items: center;
  padding: 12px 16px; background: var(--bg-soft);
  border-radius: var(--radius-sm); border-left: 3px solid var(--border-strong);
}
.timeline-item.severity-1 { border-left-color: #FFC93C; }
.timeline-item.severity-2 { border-left-color: var(--warning); }
.timeline-item.severity-3 { border-left-color: #E67E22; }
.timeline-item.severity-4 { border-left-color: var(--danger); }
.timeline-item.severity-5 { border-left-color: var(--danger); background: var(--danger-bg); }
.timeline-year { font-weight: 800; color: var(--primary-dark); font-size: 13px; letter-spacing: 0.04em; }
.timeline-text { font-size: 13px; color: var(--text-body); }
.timeline-item.severity-5 .timeline-text { color: var(--danger); font-weight: 600; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-text h2 { color: white; margin-bottom: 22px; text-transform: uppercase; }
.about-text p { color: rgba(255,255,255,0.85); margin-bottom: 14px; font-size: 15px; line-height: 1.6; }
.about-image { border-radius: var(--radius); aspect-ratio: 4/4; position: relative; overflow: hidden; }

.check-list { margin: 24px 0 32px; }
.check-list li {
  position: relative; padding-left: 32px; margin-bottom: 12px; font-size: 14px;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='5 12 10 17 19 7' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='5 12 10 17 19 7' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.section-dark .check-list li { color: white; }

/* STATS CARD */
.stats-card {
  background: white; border-radius: var(--radius);
  padding: 26px 32px; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px; margin-bottom: -52px; position: relative; z-index: 2;
}
@media (max-width: 768px) { .stats-card { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.stat { display: flex; align-items: center; gap: 14px; }
.stat-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--accent-pale); display: grid; place-items: center; color: var(--accent);
}
.stat-icon svg { width: 22px; height: 22px; }
.stat strong {
  display: block; font-size: 1.55rem; font-weight: 900;
  color: var(--primary-dark); line-height: 1; letter-spacing: -0.02em;
}
.stat strong span { color: var(--accent); margin-left: 1px; }
.stat-label {
  font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em;
  margin-top: 4px; display: block; text-transform: uppercase; font-weight: 600;
}

/* GOOGLE REVIEWS HEADER */
.google-reviews-summary {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; max-width: 600px; margin: 0 auto 40px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.google-reviews-summary .stars-row {
  display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 8px;
}
.google-reviews-summary .stars { color: #FFC93C; font-size: 22px; letter-spacing: 2px; }
.google-reviews-summary .rating-num { font-size: 1.8rem; font-weight: 900; color: var(--primary-dark); letter-spacing: -0.02em; }
.google-reviews-summary p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.google-reviews-summary .google-logo {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--text-dark);
}
.google-reviews-summary .google-logo svg { width: 18px; height: 18px; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonials-grid.cols-2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonials-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .testimonials-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .testimonials-grid, .testimonials-grid.cols-2, .testimonials-grid.cols-4 { grid-template-columns: 1fr; } }

.testimonial-card {
  background: white; border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  position: relative; display: flex; flex-direction: column;
}
.testimonial-card.is-example { background: var(--bg-soft); border-style: dashed; }
.testimonial-card .stars {
  color: #FFC93C; letter-spacing: 1px;
  margin-bottom: 14px; font-size: 15px;
}
.testimonial-card p {
  color: var(--text-dark); font-size: 14px;
  margin-bottom: 18px; line-height: 1.55; flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: white;
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
}
.testimonial-author strong { display: block; color: var(--text-dark); font-size: 13px; }
.testimonial-author span { font-size: 11px; color: var(--text-muted); }
.example-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--text-muted); color: white;
  font-size: 9px; letter-spacing: 0.1em;
  padding: 3px 7px; border-radius: 3px;
  font-weight: 700; text-transform: uppercase;
}
.review-source {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-muted); margin-left: auto;
}
.review-source svg { width: 14px; height: 14px; }

/* LOAD MORE */
.load-more-wrap { text-align: center; margin-top: 40px; }

/* CTA STRIP */
.cta-strip {
  background: var(--primary-deep); color: white; padding: 56px 0;
}
.cta-strip-inner {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 32px; align-items: center;
}
@media (max-width: 768px) { .cta-strip-inner { grid-template-columns: 1fr; text-align: center; } }
.cta-strip h2 {
  color: white; font-size: 1.75rem; line-height: 1.15;
  text-transform: uppercase; margin: 8px 0; letter-spacing: -0.01em;
}
.cta-strip p { color: rgba(255,255,255,0.78); font-size: 14px; }
.btn-cta-large {
  background: var(--accent); color: white;
  padding: 18px 40px; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 13px; letter-spacing: 0.06em;
  text-align: center; justify-self: end; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase;
}
.btn-cta-large:hover { background: var(--accent-hover); transform: translateY(-1px); }
@media (max-width: 768px) { .btn-cta-large { justify-self: center; } }

/* FOOTER */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.7); padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 13px; line-height: 1.6; margin-top: 16px; }
.site-footer h4 {
  color: white; font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px;
}
.site-footer ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a { font-size: 13px; transition: color .2s; }
.site-footer ul a:hover { color: var(--accent-light); }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent-light); }
.footer-bottom {
  margin-top: 48px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 12px; align-items: center; }
.footer-legal a:hover { color: var(--accent-light); }

/* PAGE BANNER */
.page-banner {
  background: var(--primary-dark); color: white;
  padding: 70px 0 60px;
}
.page-banner h1 {
  color: white; margin: 12px 0 14px;
  font-size: 2.75rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.02em;
}
.page-banner p {
  color: rgba(255,255,255,0.85); max-width: 720px;
  font-size: 15px; margin-bottom: 24px;
}
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color .2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: white; }

/* B/A SLIDER */
.ba-slider-wrap { max-width: 960px; margin: 0 auto; }
.ba-slider {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  user-select: none; cursor: ew-resize;
}
.ba-img { position: absolute; inset: 0; }
.ba-img-after {
  background:
    repeating-linear-gradient(45deg, rgba(100,158,38,0.1) 0, rgba(100,158,38,0.1) 12px, rgba(100,158,38,0.05) 12px, rgba(100,158,38,0.05) 24px),
    linear-gradient(135deg, #c5d3df, #a8bccd);
}
.ba-img-before {
  background:
    repeating-linear-gradient(45deg, rgba(74,85,104,0.2) 0, rgba(74,85,104,0.2) 12px, rgba(74,85,104,0.1) 12px, rgba(74,85,104,0.1) 24px),
    linear-gradient(135deg, #4a5568, #2d3748);
  clip-path: inset(0 50% 0 0);
}
.ba-img .img-placeholder-label { background: rgba(0,0,0,0.85); }
.ba-label {
  position: absolute; top: 16px;
  background: rgba(2,34,57,0.92); color: white;
  padding: 6px 14px; border-radius: 3px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  z-index: 3; text-transform: uppercase;
}
.ba-label-before { left: 16px; background: rgba(220,53,69,0.95); }
.ba-label-after { right: 16px; background: rgba(100,158,38,0.95); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
  z-index: 4; pointer-events: none; transform: translateX(-50%);
}
.ba-handle-line { width: 100%; height: 100%; background: white; box-shadow: 0 0 12px rgba(0,0,0,0.4); }
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; background: white;
  border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); border: 3px solid white;
}
.ba-handle-circle svg { width: 22px; height: 22px; color: var(--primary-dark); }

/* SERVICE DETAIL */
.service-detail {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; align-items: start;
}
@media (max-width: 980px) { .service-detail { grid-template-columns: 1fr; } }
.service-detail-main h2 {
  margin: 32px 0 14px; font-size: 1.5rem;
  text-transform: none; letter-spacing: -0.02em;
}
.service-detail-main h2:first-child { margin-top: 0; }
.service-detail-main p { margin-bottom: 16px; font-size: 15px; line-height: 1.65; }

.process-steps { margin: 16px 0 32px; }
.process-step {
  display: flex; gap: 16px; padding: 16px;
  margin-bottom: 10px; background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.step-number {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--accent); color: white; border-radius: 50%;
  display: grid; place-items: center; font-weight: 900; font-size: 14px;
}
.process-step strong { display: block; color: var(--text-dark); margin-bottom: 4px; }
.process-step p { font-size: 14px; color: var(--text-muted); margin: 0; }

.service-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 12px;
}
.sidebar-card h3 {
  margin-bottom: 14px; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.sidebar-card .check-list { margin: 0 0 20px; }
.sidebar-card .check-list li { font-size: 13px; }
.sidebar-card-dark {
  background: var(--primary-dark); color: white;
  text-align: center; border: none;
}
.sidebar-card-dark strong {
  display: block; font-size: 11px;
  color: rgba(255,255,255,0.65); letter-spacing: 0.12em;
  margin-bottom: 8px; text-transform: uppercase;
}
.phone-large {
  display: block; font-size: 1.4rem; font-weight: 900;
  color: var(--accent-light); margin-bottom: 6px; letter-spacing: -0.01em;
}
.sidebar-card-dark > span { font-size: 12px; color: rgba(255,255,255,0.65); display: block; }

/* INFO BOX */
.info-box {
  background: var(--warning-bg); border-left: 4px solid var(--warning);
  padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.info-box strong { display: block; color: var(--warning-dark); margin-bottom: 6px; }
.info-box p { font-size: 14px; margin: 0; line-height: 1.5; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: 18px 56px 18px 22px; font-weight: 700;
  color: var(--text-dark); cursor: pointer;
  list-style: none; position: relative; font-size: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); font-size: 22px;
  color: var(--accent); font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 22px; color: var(--text-body); font-size: 14px; }

/* REGION-LIST */
.region-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; max-width: 900px; margin: 0 auto;
}
.region-list a {
  padding: 10px 22px; background: white;
  border: 1px solid var(--border); border-radius: 3px;
  font-size: 14px; font-weight: 600;
  color: var(--text-dark); transition: all .2s;
}
.region-list a:hover { border-color: var(--accent); color: var(--accent); }

/* CITY PAGE */
.city-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
@media (max-width: 600px) { .city-stats { grid-template-columns: 1fr; } }
.city-stat {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 22px; text-align: center;
}
.city-stat strong {
  display: block; font-size: 1.85rem; font-weight: 900;
  color: var(--accent); line-height: 1; letter-spacing: -0.02em;
}
.city-stat span {
  display: block; font-size: 11px; color: var(--text-muted);
  margin-top: 8px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
}
.city-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin: 28px 0;
}
@media (max-width: 768px) { .city-info-grid { grid-template-columns: 1fr; } }
.city-info-card {
  background: var(--bg-soft); padding: 26px;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.city-info-card h3 {
  font-size: 1rem; margin-bottom: 12px; color: var(--primary-dark);
  text-transform: none; letter-spacing: -0.01em;
}
.city-info-card p { font-size: 14px; line-height: 1.6; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { margin-bottom: 24px; font-size: 1.5rem; text-transform: none; letter-spacing: -0.02em; }
.contact-large li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-large li:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-pale); border-radius: 50%;
  display: grid; place-items: center; color: var(--accent);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-large strong { display: block; color: var(--text-dark); margin-bottom: 4px; font-size: 14px; }
.contact-large a { color: var(--accent); font-weight: 700; display: block; margin-bottom: 2px; font-size: 14px; }
.contact-large span { font-size: 13px; color: var(--text-muted); }
.contact-form-wrap {
  background: var(--bg-soft); padding: 32px;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.contact-form-wrap h2 { margin-bottom: 24px; font-size: 1.3rem; text-transform: none; letter-spacing: -0.01em; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--text-dark);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: white;
  font: inherit; font-size: 14px; color: var(--text-dark);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.checkbox-label {
  flex-direction: row !important;
  align-items: flex-start; gap: 10px !important;
  font-size: 12px !important; font-weight: 400 !important;
  color: var(--text-body) !important;
}
.checkbox-label input { width: auto; margin-top: 2px; }
.checkbox-label a { color: var(--accent); text-decoration: underline; }

/* REFERENCE GALLERY */
.ref-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .ref-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ref-gallery { grid-template-columns: 1fr; } }
.ref-item {
  background: white; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4/5;
  display: flex; flex-direction: column;
  position: relative; transition: all .25s;
}
.ref-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ref-info {
  margin-top: auto; padding: 14px;
  background: white; border-top: 1px solid var(--border); z-index: 2;
}
.ref-info strong { display: block; font-size: 13px; color: var(--text-dark); margin-bottom: 2px; }
.ref-info span { font-size: 11px; color: var(--text-muted); }
.ref-tag {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; color: white; background: var(--accent);
  padding: 3px 8px; border-radius: 3px; margin-bottom: 6px; text-transform: uppercase;
}

/* STUB */
.stub-notice {
  background: var(--warning-bg); border: 2px dashed var(--warning);
  padding: 40px; border-radius: var(--radius);
  text-align: center; margin: 48px auto; max-width: 700px;
}
.stub-notice h2 { color: var(--warning-dark); margin-bottom: 12px; text-transform: none; letter-spacing: -0.01em; }
.stub-notice p { color: var(--text-body); }

/* LEGAL */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin: 28px 0 10px; font-size: 1.2rem; text-transform: none; letter-spacing: -0.01em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 12px; font-size: 14px; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all .25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-img { aspect-ratio: 16/10; }
.blog-content { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-tag {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
}
.blog-content h3 {
  line-height: 1.25; margin: 0; text-transform: none;
  letter-spacing: -0.01em; font-size: 1.05rem;
}
.blog-content p { font-size: 13px; color: var(--text-muted); flex: 1; line-height: 1.55; }
.blog-meta {
  font-size: 11px; color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 10px; margin-top: 8px;
}

/* OCCASION CARDS — for "When customers call us" */
.occasions-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 32px;
}
@media (max-width: 980px) { .occasions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .occasions-grid { grid-template-columns: 1fr; } }
.occasion-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  text-align: center; transition: all .2s;
}
.occasion-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.occasion-emoji { font-size: 32px; margin-bottom: 12px; display: block; }
.occasion-card h3 {
  font-size: 0.95rem; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--primary-dark);
}
.occasion-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* EQUIPMENT FEATURES */
.equipment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .equipment-grid { grid-template-columns: 1fr; } }
.equipment-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.equipment-img {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.equipment-content { padding: 20px; }
.equipment-content h3 {
  font-size: 0.95rem; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--primary-dark);
}
.equipment-content p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* FILTER PILLS */
.filter-pill {
  padding: 10px 18px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); }
.filter-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* =====================================================
   MOBILE-FIRST OPTIMIERUNG
   Desktop bleibt unverändert; Mobile wird optimiert
   ===================================================== */

@media (max-width: 768px) {
  /* TYPOGRAPHIE */
  body { font-size: 15px; }
  h1, h2, h3, h4 { word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
  h1 { font-size: 1.75rem !important; line-height: 1.05; letter-spacing: -0.025em; }
  h2 { font-size: 1.4rem !important; line-height: 1.1; letter-spacing: -0.02em; }
  h3 { font-size: 0.9rem !important; }
  .container, .container-narrow { padding: 0 16px; max-width: 100%; box-sizing: border-box; }
  section { overflow: hidden; }

  /* TOP BAR */
  .top-bar { padding: 8px 0; font-size: 11px; }
  .top-bar-inner { gap: 8px; flex-direction: column; align-items: flex-start; }
  .top-bar-left { gap: 10px; flex-wrap: wrap; }
  .top-bar-item svg { width: 12px; height: 12px; }

  /* HEADER mobile */
  .site-header { box-shadow: 0 1px 4px rgba(2,34,57,0.06); }
  .header-inner { padding: 10px 16px; gap: 12px; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-name { font-size: 1.1rem; letter-spacing: -0.02em; }
  .logo-tagline { display: none; }
  .main-nav { display: none; }
  .btn-header-cta { display: none; }
  .mobile-toggle { display: flex; margin-left: auto; }

  /* MOBILE MENU OVERLAY */
  .main-nav.is-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 24px 24px;
    gap: 8px;
    overflow-y: auto;
  }
  .main-nav.is-open a {
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.is-open .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    background: transparent;
    border: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
  }
  .main-nav.is-open .nav-dropdown a {
    font-size: 13px;
    padding: 10px 0;
  }
  .mobile-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .mobile-toggle span { transition: all .25s; }

  /* HERO */
  .hero { min-height: auto; padding: 0; max-width: 100%; }
  .hero-content { padding: 40px 16px 50px; max-width: 100%; box-sizing: border-box; }
  .hero h1 {
    font-size: 1.9rem !important;
    line-height: 1.05;
    margin-bottom: 16px;
    word-break: break-word;
  }
  .hero-sub { font-size: 0.9rem; margin-bottom: 22px; line-height: 1.5; }
  .hero-buttons { flex-direction: column; gap: 10px; width: 100%; max-width: 100%; }
  .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(2,34,57,0.94) 0%, rgba(2,34,57,0.85) 100%);
  }

  /* TRUST BAR */
  .trust-bar { padding: 16px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-circle { width: 30px; height: 30px; }
  .trust-circle svg { width: 14px; height: 14px; }
  .trust-text { font-size: 10px; line-height: 1.25; }

  /* SECTIONS */
  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 0.9rem; }
  .eyebrow { font-size: 10px; }

  /* SERVICES GRID — alles untereinander */
  .services-grid,
  .services-grid.cols-3,
  .services-grid.cols-4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-img { height: 180px; }
  .service-icon { width: 50px; height: 50px; top: 148px; }
  .service-body { padding: 36px 18px 18px; }

  /* WERTERHALT-COMPARISON */
  .value-comparison { margin-top: 24px; }
  .value-comparison-header { padding: 18px 16px; }
  .value-comparison-header h3 { font-size: 0.95rem; line-height: 1.2; }
  .value-comparison-header p { font-size: 12px; margin-top: 4px; }
  .value-comparison-body { grid-template-columns: 1fr; }
  .value-side { padding: 22px 18px; }
  .value-side h4 { font-size: 0.8rem; }
  .value-side .price-label { font-size: 1.4rem; line-height: 1.1; }
  .value-divider { padding: 8px; }
  .value-divider span { font-size: 11px; padding: 6px 14px; }
  .value-comparison-footer { padding: 18px 16px; }
  .value-comparison-footer h4 { font-size: 1rem; }
  .value-comparison-footer p { font-size: 13px; }
  .feature-list li { font-size: 13px; gap: 8px; }
  .feature-list svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* TIMELINE */
  .timeline-warning { padding: 22px 18px; margin: 24px auto; }
  .timeline-warning h3 { font-size: 1rem; line-height: 1.2; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 12px; padding: 10px 12px; }
  .timeline-year { font-size: 11px; }
  .timeline-text { font-size: 12px; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-text h2 { margin-bottom: 16px; }
  .about-image { aspect-ratio: 4/3; }

  /* STATS */
  .stats-card {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 22px 18px;
    margin-bottom: -32px;
  }
  .stat-icon { width: 36px; height: 36px; }
  .stat-icon svg { width: 18px; height: 18px; }
  .stat strong { font-size: 1.3rem; }
  .stat-label { font-size: 10px; }

  /* TESTIMONIALS */
  .testimonials-grid,
  .testimonials-grid.cols-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card { padding: 22px 18px; }
  .testimonial-card p { font-size: 13px; }

  /* CTA-STRIP */
  .cta-strip { padding: 36px 0; }
  .cta-strip-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 0 16px; }
  .cta-strip h2 { font-size: 1.3rem; line-height: 1.1; word-break: break-word; }
  .cta-strip p { font-size: 13px; }
  .cta-strip .eyebrow { font-size: 10px; }
  .btn-cta-large { width: 100%; padding: 14px; font-size: 13px; box-sizing: border-box; }

  /* BUTTONS allgemein */
  .btn { box-sizing: border-box; max-width: 100%; word-break: break-word; }
  .btn-large { font-size: 13px; padding: 14px 18px; }

  /* PAGE BANNER */
  .page-banner { padding: 40px 0 36px; }
  .page-banner h1 { font-size: 1.7rem !important; line-height: 1.05; }
  .page-banner p { font-size: 0.85rem; margin-bottom: 18px; }
  .breadcrumb { font-size: 11px; }

  /* B/A SLIDER */
  .ba-slider { aspect-ratio: 4/3; }
  .ba-handle-circle { width: 38px; height: 38px; }
  .ba-handle-circle svg { width: 16px; height: 16px; }
  .ba-label { font-size: 10px; padding: 4px 10px; top: 12px; }
  .ba-label-before { left: 12px; }
  .ba-label-after { right: 12px; }

  /* SERVICE DETAIL */
  .service-detail { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-main h2 { font-size: 1.25rem; margin: 24px 0 10px; }
  .service-detail-main p { font-size: 14px; }
  .service-sidebar { position: static; }
  .sidebar-card { padding: 20px 18px; }

  /* PROCESS STEPS */
  .process-step { padding: 14px; gap: 12px; }
  .step-number { width: 28px; height: 28px; font-size: 13px; }

  /* FAQ */
  .faq-item summary { padding: 14px 44px 14px 16px; font-size: 13px; }
  .faq-item summary::after { right: 16px; }
  .faq-item p { padding: 0 16px 18px; font-size: 13px; }

  /* CITY */
  .city-stats { grid-template-columns: 1fr; gap: 12px; }
  .city-stat { padding: 16px; }
  .city-stat strong { font-size: 1.5rem; }
  .city-info-grid { grid-template-columns: 1fr; gap: 16px; }
  .city-info-card { padding: 20px 18px; }
  .city-info-card h3 { font-size: 0.95rem; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-info h2 { font-size: 1.25rem; margin-bottom: 16px; }
  .contact-large li { padding: 14px 0; gap: 12px; }
  .contact-icon { width: 38px; height: 38px; }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-form-wrap { padding: 22px 18px; }
  .contact-form-wrap h2 { font-size: 1.1rem; margin-bottom: 18px; }
  .contact-form input, .contact-form select, .contact-form textarea {
    font-size: 16px; /* Verhindert Zoom in iOS */
  }

  /* REGION-LIST */
  .region-list { gap: 6px; padding: 0 8px; }
  .region-list a { padding: 8px 14px; font-size: 12px; }

  /* REF GALLERY */
  .ref-gallery { grid-template-columns: 1fr; gap: 12px; }

  /* BLOG */
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-content { padding: 18px; }
  .blog-content h3 { font-size: 1rem; }

  /* FOOTER */
  .site-footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
  .footer-brand p { font-size: 12px; }
  .site-footer h4 { font-size: 11px; margin-bottom: 12px; }
  .site-footer ul a { font-size: 12px; }
  .footer-bottom { margin-top: 32px; padding: 14px 0; font-size: 11px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; align-items: center; text-align: center; padding: 0 16px; }
  .footer-legal { gap: 8px; flex-wrap: wrap; justify-content: center; }

  /* DEMO BANNER mobile */
  .demo-banner { bottom: 12px; right: 12px; left: 12px; }
  .demo-banner-inner { font-size: 11px; padding: 8px 10px; flex-wrap: wrap; }
  .demo-banner select { max-width: 100%; flex: 1; }

  /* FILTER PILLS mobile */
  .filter-bar { gap: 6px; padding: 0 8px; }
  .filter-pill { padding: 8px 14px; font-size: 10px; }

  /* LEGAL */
  .legal-content h2 { font-size: 1rem; margin: 22px 0 8px; }
  .legal-content p { font-size: 13px; }
}

/* =====================================================
   SLIDER GALLERY (4 SLIDER IN EINER REIHE)
   ===================================================== */

.slider-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) { .slider-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .slider-gallery { grid-template-columns: 1fr; gap: 14px; } }

.slider-gallery-item { display: flex; flex-direction: column; gap: 8px; }

.slider-gallery .ba-slider {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  cursor: ew-resize;
  user-select: none;
}
.slider-gallery .ba-handle-circle { width: 36px; height: 36px; border-width: 2px; }
.slider-gallery .ba-handle-circle svg { width: 16px; height: 16px; }
.slider-gallery .ba-label { font-size: 10px; padding: 4px 9px; top: 10px; }
.slider-gallery .ba-label-before { left: 10px; }
.slider-gallery .ba-label-after { right: 10px; }
.slider-gallery .img-placeholder-label { font-size: 10px; padding: 3px 7px; }

.slider-gallery-caption {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  padding: 0 4px;
}
.slider-gallery-caption strong { display: block; color: var(--text-dark); font-size: 13px; margin-bottom: 2px; }


/* =====================================================
   ANTI-OVERFLOW SAFETY NET
   Verhindert horizontales Scrollen unter allen Umständen
   ===================================================== */

* {
  max-width: 100%;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0;
  padding: 0;
  position: relative;
}

.page,
section,
header,
footer,
.container,
.container-narrow,
.hero,
.hero-content {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 768px) {
  /* Headlines: aggressive break + hyphenation */
  h1, h2, h3, h4, p {
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  /* Page banners: kompakter */
  .page-banner h1 {
    font-size: 1.5rem !important;
    line-height: 1.1;
  }
  .hero h1 { font-size: 1.7rem !important; line-height: 1.1; }

  /* Buttons: niemals breiter als parent */
  .btn, .btn-large, .btn-cta-large {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Trust-Bar: niemals 4 Spalten */
  .trust-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  /* Slider-Gallery sicher */
  .slider-gallery {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

