/* ═══════════════════════════════════════════════════════════════
   site.css — Geteiltes Stylesheet für die /auto-service/* Unterseiten.
   Tokens & Chrome 1:1 aus index.html extrahiert (index.html bleibt
   unangetastet — diese Datei wird NUR von den Unterseiten geladen).
   Fonts kommen weiterhin aus /fonts.css.
═══════════════════════════════════════════════════════════════ */

/* ── Reset & Tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:      #3e6b25;
  --green-viv:  #5a8c36;
  --green-dk:   #2b4e1a;
  --green-lt:   #e2edd8;
  --black:      #0A0A0A;
  --gray-900:   #141414;
  --gray-700:   #3a3a3a;
  --gray-500:   #6b6b6b;
  --gray-200:   #e0e0e0;
  --gray-100:   #f4f4f4;
  --white:      #ffffff;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: 0 0 6px 0;
  font-size: 13px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Layout primitives ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }

.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.label::before { content:''; width:24px; height:2px; background:var(--green); }

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.12; color: var(--black); margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--green); }
.section-sub { font-size: 17px; color: var(--gray-500); line-height: 1.75; max-width: 520px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-size: 14px; font-weight: 600;
  border-radius: 4px; transition: all .2s ease; cursor: pointer;
}
.btn svg { flex-shrink: 0; }
.btn-white  { background:#fff; color:var(--black); }
.btn-white:hover { background:#e8e8e8; }
.btn-green  { background:var(--green); color:#fff; }
.btn-green:hover { background:var(--green-dk); transform:translateY(-1px); box-shadow:0 6px 18px rgba(62,107,37,.35); }
.btn-ghost-white { background:rgba(255,255,255,.06); color:rgba(255,255,255,.92); border:1.5px solid rgba(255,255,255,.25); }
.btn-ghost-white:hover { color:#fff; border-color:rgba(255,255,255,.6); background:rgba(255,255,255,.12); }
.btn-outline-dark { background:transparent; color:var(--black); border:1.5px solid var(--gray-200); }
.btn-outline-dark:hover { border-color:var(--black); }

/* ═══════════════════════════════════════════
   NAV (solid auf Unterseiten — über dunklem Sub-Hero immer lesbar)
═══════════════════════════════════════════ */
#nav-top {
  position: fixed; top:0; left:0; right:0; z-index:201;
  background: #111111; height:40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; padding: 0 40px;
}
.nav-top-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.nav-top-item { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); }
.nav-top-item svg { opacity: .75; flex-shrink: 0; }
.nav-top-item a { color: inherit; }
.nav-top-sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.nav-top-usp { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green-viv); letter-spacing: .01em; }
.nav-top-usp svg { opacity: 1; flex-shrink: 0; }
.nav-top-badge { font-size: 11px; font-weight: 700; color: #fff; background: var(--green); padding: 3px 10px; border-radius: 3px; letter-spacing: .01em; white-space: nowrap; }
.nav-top-cta { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; color: #fff; background: var(--green); padding: 5px 14px; border-radius: 3px; transition: background .15s; }
.nav-top-cta:hover { background: var(--green-dk); }

#nav {
  position: fixed; top:40px; left:0; right:0; z-index:200;
  padding: 0 40px;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1200px; margin: 0 auto; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { background: var(--green); color: #fff; padding: 10px 22px; border-radius: 3px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: all .2s; }
.nav-cta:hover { background: var(--green-dk); transform: translateY(-1px); }
.hamburger { display:none; flex-direction:column; gap:5px; padding:4px; }
.hamburger span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; transition:all .3s; }
.mobile-nav {
  display: none; position: fixed; top:112px; left:0; right:0;
  background: rgba(10,10,10,.97); padding: 24px 40px;
  flex-direction: column; gap: 18px; z-index: 199;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display:flex; }
.mobile-nav a { font-size:15px; font-weight:500; color:rgba(255,255,255,.7); padding:8px 0; border-bottom:1px solid rgba(255,255,255,.06); }

/* ═══════════════════════════════════════════
   SUB-HERO (dunkel, Bild + Grün-Spotlight)
═══════════════════════════════════════════ */
.sub-hero { position: relative; background: var(--black); padding: 156px 0 66px; overflow: hidden; }
.sub-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .30; transform: scale(1.03); }
.sub-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.96) 0%, rgba(10,10,10,.55) 55%, rgba(10,10,10,.78) 100%); }
.sub-hero-light { position:absolute; bottom:-30%; right:4%; width:520px; height:520px; background:radial-gradient(circle, rgba(62,107,37,.16) 0%, transparent 68%); pointer-events:none; }
.sub-hero-inner { position: relative; z-index: 2; }
.crumb { font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.crumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.crumb a:hover { color: var(--green-viv); }
.crumb span { margin: 0 8px; opacity: .45; }
.sub-tag {
  display:inline-block; font-size:10.5px; font-weight:800; letter-spacing:.12em;
  text-transform:uppercase; color:#fff; background:var(--green);
  padding:5px 12px; border-radius:3px; margin-bottom:18px;
}
.sub-hero h1 {
  font-size: clamp(34px, 5.4vw, 58px); font-weight: 800; letter-spacing: -.025em;
  line-height: 1.07; color: #fff; max-width: 19ch;
}
.sub-hero h1 em { font-style: normal; color: var(--green-viv); }
.sub-hero .lead { font-size: 18px; color: rgba(255,255,255,.64); max-width: 62ch; line-height: 1.72; margin-top: 18px; }
.sub-bullets { display: flex; flex-wrap: wrap; gap: 11px 26px; margin: 28px 0 30px; }
.sub-bullets li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; color: rgba(255,255,255,.88); }
.sub-bullets .ck { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:50%; background:rgba(62,107,37,.22); color:var(--green-viv); flex-shrink:0; }
.sub-bullets .ck svg { width:13px; height:13px; }
.sub-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ═══════════════════════════════════════════
   ARTIKEL (heller Lesebereich)
═══════════════════════════════════════════ */
.article { padding: 74px 0; background: #fff; }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article h2 { font-size: clamp(23px, 3.3vw, 31px); font-weight: 800; letter-spacing: -.02em; color: var(--black); margin: 46px 0 14px; line-height: 1.18; }
.article h2:first-of-type { margin-top: 0; }
.article h3 { font-size: 18px; font-weight: 700; color: var(--black); margin: 28px 0 10px; }
.article p { font-size: 16.5px; line-height: 1.8; color: var(--gray-700); margin-bottom: 16px; }
.article p a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article p a:hover { color: var(--green-dk); }
.article ul.checks { display: grid; gap: 11px; margin: 8px 0 22px; }
.article ul.checks li { position: relative; padding-left: 32px; font-size: 16px; line-height: 1.7; color: var(--gray-700); }
.article ul.checks li::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-lt) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233e6b25' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.highlight { background: var(--green-lt); border-left: 4px solid var(--green); border-radius: 0 10px 10px 0; padding: 24px 26px; margin: 32px 0; }
.highlight h2 { margin: 0 0 10px; font-size: 20px; }
.highlight p { color: var(--gray-700); }
.highlight p:last-child { margin-bottom: 0; }

.steps { counter-reset: s; display: grid; gap: 14px; margin: 22px 0 8px; }
.steps li { counter-increment: s; position: relative; padding: 18px 22px 18px 66px; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 10px; }
.steps li::before { content: counter(s, decimal-leading-zero); position: absolute; left: 22px; top: 18px; font-weight: 800; color: var(--green); font-size: 16px; font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; }
.steps li strong { display: block; margin-bottom: 3px; color: var(--black); font-size: 15.5px; }
.steps li span { color: var(--gray-500); font-size: 14.5px; line-height: 1.65; }

/* FAQ-Akkordeon */
.faq-acc { margin-top: 18px; display: grid; gap: 10px; }
.faq-acc details { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
.faq-acc summary { cursor: pointer; padding: 17px 22px; font-weight: 700; font-size: 15px; color: var(--black); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-acc summary::-webkit-details-marker { display: none; }
.faq-acc summary::after { content: "+"; font-size: 22px; font-weight: 700; color: var(--green); transition: transform .2s; line-height: 1; }
.faq-acc details[open] summary { background: #1c3c12; color: #fff; }
.faq-acc details[open] summary::after { transform: rotate(45deg); color: #fff; }
.faq-acc .faq-a { padding: 16px 22px 19px; color: var(--gray-500); font-size: 14.5px; line-height: 1.75; }

/* ═══════════════════════════════════════════
   VERWANDTE LEISTUNGEN
═══════════════════════════════════════════ */
.related { background: var(--gray-100); padding: 66px 0; }
.related .label { color: var(--green); }
.related h2 { font-size: clamp(24px,3.4vw,34px); font-weight: 800; letter-spacing: -.02em; color: var(--black); margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: var(--green-lt); }
.related-card .rc-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .03em; color: var(--black); }
.related-card .rc-desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }
.related-card .rc-go { margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 5px; }

/* ═══════════════════════════════════════════
   CTA-BAND
═══════════════════════════════════════════ */
.cta-band { background: var(--green); border-radius: 14px; padding: 48px 40px; text-align: center; }
.cta-section { background: #fff; padding: 0 0 84px; }
.cta-band h2 { color: #fff; font-size: clamp(24px,3.6vw,34px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto 26px; font-size: 16px; line-height: 1.6; }
.cta-band .sub-cta { justify-content: center; }
.cta-band .btn-white { background: #fff; color: var(--green-dk); }
.cta-band .btn-white:hover { background: #eef3e8; }
.cta-band .btn-ghost-white { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }
.cta-band .btn-ghost-white:hover { background: rgba(255,255,255,.2); border-color: #fff; }

/* ═══════════════════════════════════════════
   PRE-FOOTER + FOOTER (1:1 aus index.html)
═══════════════════════════════════════════ */
.pre-footer { background: linear-gradient(118deg,#09160c 0%,#0f2214 18%,#1a3820 34%,#224a28 46%,#193620 58%,#0d2012 74%,#09160c 100%); position: relative; overflow: hidden; padding: 64px 0; }
.pre-footer::before { content:''; position:absolute; inset:0; background: linear-gradient(108deg, transparent 0%, rgba(160,255,120,.03) 28%, rgba(180,255,140,.07) 42%, rgba(220,255,180,.10) 50%, rgba(160,255,120,.05) 60%, transparent 78%); pointer-events:none; }
.pre-footer::after { content:''; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent 0%, rgba(140,230,100,.45) 30%, rgba(180,255,140,.6) 50%, rgba(140,230,100,.45) 70%, transparent 100%); pointer-events:none; }
.pre-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; z-index: 1; }
.pre-footer-copy h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.pre-footer-copy p { font-size: 15px; color: rgba(255,255,255,.65); max-width: 420px; line-height: 1.6; }
.pre-footer-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-pf-primary { background: #fff; color: #1a3820; padding: 14px 28px; border-radius: 4px; font-size: 14px; font-weight: 800; letter-spacing: .03em; transition: all .2s; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.btn-pf-primary:hover { background: var(--green-viv); color: #fff; }
.btn-pf-ghost { background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); border: 1.5px solid rgba(255,255,255,.18); padding: 14px 28px; border-radius: 4px; font-size: 14px; font-weight: 700; transition: all .2s; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.btn-pf-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); }

footer { background:var(--gray-900); padding:64px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.07); margin-bottom:28px; }
.footer-brand .footer-logo img { height:40px; width:auto; margin-bottom:18px; }
.footer-brand p { font-size:13.5px; color:rgba(255,255,255,.38); line-height:1.8; max-width:280px; }
.footer-col h4 { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.25); margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:13.5px; color:rgba(255,255,255,.5); transition:color .2s; }
.footer-col ul li a:hover { color:#fff; }
.footer-col ul li { font-size:13.5px; color:rgba(255,255,255,.45); line-height:1.65; }
.footer-col ul li a.green { color:var(--green); font-weight:600; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; max-width:1200px; margin:0 auto; padding:0 32px; }
.footer-bottom p { font-size:12px; color:rgba(255,255,255,.22); }
.footer-legal { display:flex; gap:18px; }
.footer-legal a { font-size:12px; color:rgba(255,255,255,.28); transition:color .2s; }
.footer-legal a:hover { color:rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════
   MOBILE STICKY BAR
═══════════════════════════════════════════ */
.mob-bar { display: none; }
.chat-fab { display: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .pre-footer-inner { flex-direction: column; gap: 28px; align-items: flex-start; }
  .pre-footer-actions { flex-direction: column; width: 100%; }
  .btn-pf-primary, .btn-pf-ghost { justify-content: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  #nav-top { padding: 0 16px; }
  .nav-top-usp, .nav-top-sep, .nav-top-badge { display: none; }
  #nav { padding: 0 20px; }
  .nav-inner { height: 60px; }
  .nav-logo img { height: 34px; }
  .nav-links, .nav-right { display: none !important; }
  .hamburger { display: flex; }
  .mobile-nav { padding: 20px; top: 100px; }

  .sub-hero { padding: 124px 0 50px; }
  .sub-hero .lead { font-size: 16px; }
  .sub-bullets li { font-size: 13.5px; }
  .sub-cta { flex-direction: column; align-items: stretch; }
  .sub-cta .btn { justify-content: center; }

  .article { padding: 52px 0; }
  .article p { font-size: 16px; }
  .related { padding: 52px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 22px; }
  .cta-band .sub-cta { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Sticky Schnellkontakt-Leiste (Platz unten freihalten) */
  body { padding-bottom: 64px; }
  .mob-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
    background: rgba(10,10,10,.97); border-top: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
  }
  .mob-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 4px 8px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85); }
  .mob-bar a svg { width: 19px; height: 19px; }
  .mob-bar-tel { color: #fff !important; }
  .mob-bar-wa { background: var(--green); color: #fff !important; }
  .mob-bar-termin { color: var(--green-viv) !important; }
}

@media (max-width: 390px) {
  .sub-hero h1 { font-size: clamp(28px, 8.5vw, 40px); }
}
