/* ============================================
   HAUSMEISTERDIENST.DE — Design Tokens
   Color: Anthracite #1C1B19, Warm Cream #F2EDE4,
          Tool Orange #D9622B, Steel #4A5560, Rust line #8A6A4F
   Type: Archivo Expanded (display) / Archivo (body) / JetBrains Mono (data)
   ============================================ */

:root {
  --ink: #1C1B19;
  --ink-soft: #2B2925;
  --cream: #F2EDE4;
  --cream-dim: #E7E0D2;
  --orange: #D9622B;
  --orange-dim: #B84F1F;
  --steel: #4A5560;
  --steel-light: #8A949C;
  --rust-line: #8A6A4F;
  --white: #FFFFFF;

  --font-display: 'Archivo Expanded', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 0 var(--orange-dim);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-dim); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--orange-dim); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(242,237,228,0.5);
}
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--ink);
  color: var(--steel-light);
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-phone { display: flex; align-items: center; gap: 8px; color: var(--cream-dim); transition: color 0.15s; }
.topbar-phone:hover { color: var(--orange); }

.lang-switch { display: flex; gap: 2px; }
.lang-btn {
  color: var(--steel-light);
  padding: 3px 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.03em;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active { background: var(--orange); color: var(--white); }

/* ===== HEADER ===== */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(28,27,25,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  background: var(--ink);
  color: var(--orange);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 9px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.logo-dot { color: var(--orange); }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-cta { padding: 11px 22px; font-size: 14px; }

.burger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 90px 0 0;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 25%, rgba(217,98,43,0.16), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(138,106,79,0.14), transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 70px;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 22px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  animation: fadeUp 0.7s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 820px;
  animation: fadeUp 0.7s 0.08s ease both;
}
.hero-title-accent { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: rgba(242,237,228,0.78);
  max-width: 580px;
  margin-top: 26px;
  line-height: 1.6;
  animation: fadeUp 0.7s 0.16s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
  animation: fadeUp 0.7s 0.24s ease both;
}
.hero-actions .btn-ghost {
  border-color: rgba(242,237,228,0.4);
  color: var(--cream);
}
.hero-actions .btn-ghost:hover { background: var(--cream); color: var(--ink); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s ease both;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(242,237,228,0.6);
  max-width: 160px;
  line-height: 1.35;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-toolband {
  position: relative;
  border-top: 1px solid rgba(242,237,228,0.12);
  background: var(--ink-soft);
  color: rgba(217,98,43,0.55);
  padding: 18px 0;
  overflow: hidden;
}
.toolband-svg { width: 200%; height: 90px; animation: scrollTools 32s linear infinite; }
@keyframes scrollTools { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--cream-dim);
  border-bottom: 1px solid rgba(28,27,25,0.08);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--steel);
  text-transform: uppercase;
}
.trust-sep { color: var(--orange); }

/* ===== SECTION SHARED ===== */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-dim);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-desc {
  font-size: 16.5px;
  color: var(--steel);
  max-width: 560px;
  margin-top: 18px;
  line-height: 1.65;
}
.section-head { max-width: 700px; margin-bottom: 56px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; }

.service-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-group {
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.08);
  border-radius: 8px;
  padding: 34px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-group:hover { border-color: var(--orange); transform: translateY(-3px); }

.service-group-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1.5px dashed rgba(138,106,79,0.3);
}
.service-group-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  background: var(--ink);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-group-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dim);
  display: block;
  margin-bottom: 3px;
}
.service-group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.service-list { display: flex; flex-direction: column; gap: 18px; }
.service-list li { display: flex; gap: 14px; align-items: flex-start; }
.service-list-icon {
  font-size: 19px;
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dim);
  border-radius: 6px;
}
.service-list strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.service-list p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about { background: var(--ink); color: var(--cream); padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about .section-eyebrow { color: var(--orange); }
.about .section-title { color: var(--cream); }
.about .section-desc { color: rgba(242,237,228,0.7); max-width: 100%; }

.about-points { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-point { display: flex; align-items: center; gap: 12px; font-size: 15.5px; }
.about-point-icon {
  width: 24px; height: 24px;
  background: var(--orange);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
}

.about-card {
  background: var(--ink-soft);
  border: 1px solid rgba(242,237,228,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.about-card-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(242,237,228,0.08);
}
.about-card-row:last-child { border-bottom: none; }
.about-card-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--orange);
  font-weight: 700;
}

/* ===== PROCESS ===== */
.process { padding: 100px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step {
  position: relative;
  padding-top: 8px;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--cream-dim);
  -webkit-text-stroke: 1.5px var(--orange);
  display: block;
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.process-step p { font-size: 14.5px; color: var(--steel); line-height: 1.55; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--orange); padding: 70px 0; }
.cta-band-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 36px);
  color: var(--ink);
  max-width: 600px;
}
.cta-band p { font-size: 16px; color: rgba(28,27,25,0.75); margin-top: 12px; }
.cta-band .hero-actions { justify-content: center; margin-top: 30px; }
.cta-band .btn-primary { background: var(--ink); box-shadow: 0 4px 0 #000; }
.cta-band .btn-ghost-light { color: var(--ink); border-color: rgba(28,27,25,0.4); }
.cta-band .btn-ghost-light:hover { background: var(--ink); color: var(--cream); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
.contact-info .section-desc { max-width: 100%; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.contact-item-icon {
  width: 46px; height: 46px;
  background: var(--cream-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.contact-item-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
  margin-bottom: 3px;
}
.contact-item a { font-size: 16px; font-weight: 700; color: var(--ink); transition: color 0.15s; }
.contact-item a:hover { color: var(--orange); }
.contact-item span[data-i18n] { font-size: 16px; font-weight: 600; color: var(--ink); }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.08);
  border-radius: 10px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
}
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid rgba(28,27,25,0.15);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s;
  resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-submit { justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--steel); text-align: center; }

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: rgba(242,237,228,0.6); padding: 40px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-text { color: var(--cream); }
.footer-links { display: flex; gap: 26px; }
.footer-links a { font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: var(--orange); }
.footer-meta { font-size: 13px; font-family: var(--font-mono); }

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 64px 0 56px;
}
.page-hero .hero-grain { position: absolute; inset: 0; pointer-events: none; }
.page-hero-inner { position: relative; max-width: var(--container); margin: 0 auto; padding: 0 32px; z-index: 2; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--steel-light);
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--steel-light); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(242,237,228,0.3); }
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.08;
  max-width: 760px;
}
.page-hero-title .accent { color: var(--orange); }
.page-hero-sub {
  font-size: 17px;
  color: rgba(242,237,228,0.75);
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.6;
}

/* ===== SUB NAV (pill tabs, used on Leistungen page) ===== */
.sub-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.sub-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border: 1.5px solid rgba(242,237,228,0.25);
  border-radius: 999px;
  color: rgba(242,237,228,0.8);
  transition: all 0.15s ease;
}
.sub-nav a:hover, .sub-nav a.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ===== ILLUSTRATION PANEL (replaces team photos) ===== */
.illu-panel {
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illu-panel svg { width: 100%; height: auto; max-width: 380px; }
.illu-caption {
  position: absolute;
  bottom: 18px; left: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(242,237,228,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.illu-img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
}

.illu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.illu-card {
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.08);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.illu-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.illu-card svg { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--orange); }
.illu-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.illu-card p { font-size: 13.5px; color: var(--steel); line-height: 1.5; }

/* ===== WHY US CHECK GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.08);
  border-radius: 10px;
  padding: 24px;
}
.why-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--ink);
  color: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.why-item h3 { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.why-item p { font-size: 13.5px; color: var(--steel); line-height: 1.5; }

/* ===== REVIEWS ===== */
.reviews { background: var(--cream-dim); padding: 100px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid rgba(28,27,25,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; flex-grow: 1; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.review-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.review-source { font-size: 11.5px; color: var(--steel); font-family: var(--font-mono); }
.reviews-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--steel);
  font-family: var(--font-mono);
}

/* ===== SERVICE AREA (region tag cloud) ===== */
.area-section { padding: 90px 0; }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.area-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.1);
  border-radius: 6px;
  color: var(--ink-soft);
}
.area-map-box {
  background: var(--ink);
  border-radius: 12px;
  padding: 36px;
  color: var(--cream);
}
.area-map-box svg { width: 100%; height: auto; }
.area-radius {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(242,237,228,0.12);
}
.area-radius-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}
.area-radius-label { font-size: 13px; color: rgba(242,237,228,0.65); line-height: 1.4; }
.area-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--steel);
  line-height: 1.6;
  background: var(--white);
  border-left: 3px solid var(--orange);
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: var(--white);
  border: 1.5px dashed var(--orange);
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
}
.offer-text h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.offer-text p { font-size: 14px; color: var(--steel); }
.offer-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: inline-block;
}

/* ===== LEISTUNG DETAIL ROWS ===== */
.leistung-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(28,27,25,0.08);
}
.leistung-detail:nth-child(even) .leistung-text { order: 2; }
.leistung-detail:nth-child(even) .leistung-visual { order: 1; }
.leistung-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dim);
  margin-bottom: 12px;
  display: block;
}
.leistung-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
}
.leistung-text p { font-size: 15.5px; color: var(--steel); line-height: 1.65; margin-bottom: 20px; }
.leistung-points { display: flex; flex-direction: column; gap: 10px; }
.leistung-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.leistung-points li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.leistung-visual {
  background: var(--cream-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(28,27,25,0.08);
}

/* ===== TEAM VALUES (Über uns) ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 30px 18px;
}
.value-card svg { width: 44px; height: 44px; color: var(--orange); margin: 0 auto 18px; }
.value-card h3 { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--steel); line-height: 1.5; }

/* ===== TIMELINE (Über uns story) ===== */
.timeline { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(28,27,25,0.08);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--font-mono); font-size: 22px; font-weight: 700; color: var(--orange); }
.timeline-item h3 { font-family: var(--font-display); font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { font-size: 14.5px; color: var(--steel); line-height: 1.55; max-width: 540px; }

/* ===== CONTACT PAGE EXTRAS ===== */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.channel-card {
  background: var(--white);
  border: 1px solid rgba(28,27,25,0.08);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.channel-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.channel-card-icon {
  width: 48px; height: 48px;
  background: var(--cream-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  margin: 0 auto 14px;
}
.channel-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.channel-card a, .channel-card span.value { font-size: 14px; color: var(--orange-dim); font-weight: 600; }

.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--white); border: 1px solid rgba(28,27,25,0.08); border-radius: 8px; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-align: left;
}
.faq-q-mark { font-family: var(--font-mono); color: var(--orange); font-size: 18px; transition: transform 0.2s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q-mark { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 22px;
  font-size: 14.5px;
  color: var(--steel);
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 22px 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .service-groups { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .illu-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .leistung-detail { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .leistung-detail:nth-child(even) .leistung-text { order: 1; }
  .leistung-detail:nth-child(even) .leistung-visual { order: 2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .offer-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .header-inner { padding: 14px 20px; }
  .topbar-inner { padding: 8px 20px; }
  .hero-inner { padding: 0 20px 50px; }
  .section-inner { padding: 0 20px; }
  .hero-stats { gap: 30px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .illu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-inner { padding: 0 20px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 20px;
    border-bottom: 1px solid rgba(28,27,25,0.1);
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-band .hero-actions { flex-direction: column; width: 100%; }
}
