/* ==========================================================
   FOLIEN-LENZ – Shared Stylesheet
   Design: White Mode · Navy #0d0d0d · Red #c0392b
   ========================================================== */

/* ── TOKENS ── */
:root {
  --white:        #ffffff;
  --bg:           #f5f5f5;
  --bg2:          #ebebeb;
  --dark:         #0d0d0d;
  --dark-2:       #1a1a1a;
  --accent:       #0d0d0d;
  --accent-hover: #333333;
  --accent-light: #f0f0f0;
  --text:         #111111;
  --text-mid:     #555555;
  --text-light:   #999999;
  --border:       #dedede;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow:       0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.15);
  --font-h:       'Barlow Condensed', sans-serif;
  --font-b:       'Inter', sans-serif;
  --nav-h:        68px;
  --max-w:        1200px;
  --ease:         cubic-bezier(.25,.46,.45,.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dark); border-radius: 3px; }

/* ========================================================
   NAVIGATION
   ======================================================== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
#nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  margin-left: auto;
}
.nav-links > li > a {
  display: block;
  padding: .5rem 1rem;
  font-family: var(--font-b);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--dark);
  border-bottom-color: var(--accent);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: .5rem .8rem;
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--dark); background: var(--bg); }
.nav-phone svg { color: var(--accent); flex-shrink: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.3rem;
  background: var(--dark);
  color: var(--white) !important;
  border: 2px solid var(--dark);
  font-family: var(--font-b);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: .5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 1px;
  transition: .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer overlay ── */
#drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
#drawer-overlay.open { display: block; animation: overlayIn .3s forwards; }
@keyframes overlayIn { from { opacity:0 } to { opacity:1 } }

/* ── Mobile drawer panel ── */
#mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overflow-x: hidden;
}
#mobile-drawer.open { transform: translateX(0); }

/* Header */
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.drawer-logo {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.drawer-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--white);
  transition: background .2s;
  flex-shrink: 0;
}
.drawer-close:hover { background: rgba(255,255,255,.18); }

/* Nav links */
.drawer-nav {
  flex: 1;
  display: flex; flex-direction: column;
  padding: .5rem 0;
}
.drawer-nav a {
  display: flex; align-items: center;
  padding: 1rem 1.25rem;
  font-family: var(--font-h);
  font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, padding-left .2s, background .2s;
  gap: .7rem;
}
.drawer-nav a:last-child { border-bottom: none; }
.drawer-nav a:hover {
  color: var(--white);
  padding-left: 1.6rem;
  background: rgba(255,255,255,.04);
}
.drawer-nav a.active {
  color: #c0392b;
  padding-left: 1.5rem;
  background: rgba(192,57,43,.1);
  border-left: 3px solid #c0392b;
}

/* Footer CTA area */
.drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: .75rem;
  flex-shrink: 0;
}
.drawer-call {
  display: flex; align-items: center; gap: .6rem;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  color: var(--white) !important;
  font-weight: 600; font-size: .95rem;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: background .2s;
}
.drawer-call:hover { background: rgba(255,255,255,.13) !important; padding-left: 1.1rem !important; }
.drawer-cta-link {
  display: flex; align-items: center; justify-content: center;
  padding: .9rem 1.2rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: background .2s;
}
.drawer-cta-link:hover { background: var(--accent-hover) !important; padding-left: 1.2rem !important; }

/* page top padding (nav compensation) */
body { padding-top: var(--nav-h); }

/* Logo image */
.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-logo-img:hover { opacity: 1; }

/* Subpage hero with background image */
.page-hero-img {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}
.page-hero-parallax-bg {
  position: absolute;
  inset: -35% 0;
  background: linear-gradient(rgba(0,0,0,.58) 0%, rgba(0,0,0,.42) 100%),
              url('scheibentoenung-hero.jpg') center/cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.page-hero-img .container {
  position: relative;
  z-index: 1;
}
.page-hero-img .page-hero-eyebrow { color: rgba(255,255,255,.55); }
.page-hero-img h1 { color: #ffffff; }
.page-hero-img h1 span { color: #cccccc; }
.page-hero-img p { color: rgba(255,255,255,.65); }

/* ========================================================
   REUSABLE COMPONENTS
   ======================================================== */

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section padding */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }

/* Section header */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .7rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--accent); }
.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 540px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-red {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-red:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--dark);
  background: var(--bg);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn svg { transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* Tags / Badges */
.tag {
  display: inline-block;
  padding: .25rem .7rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 3px;
}
.tag-navy {
  background: #f0f0f0;
  color: var(--dark);
}

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ========================================================
   PAGE HERO
   ======================================================== */
/* Subpage hero (simple) */
.page-hero {
  background-color: var(--dark);
  padding: 3.5rem 0;
}
.page-hero .container { display: flex; flex-direction: column; gap: .5rem; }
.page-hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.page-hero h1 span { color: #888888; }
.page-hero p {
  margin-top: .3rem;
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  line-height: 1.7;
}
.page-hero-sub {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
}
.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.page-hero-text {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  line-height: 1.7;
}
/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a {
  font-size: .8rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span {
  font-size: .8rem;
  color: var(--text-light);
}
.breadcrumb .bc-sep { color: var(--border); }
.breadcrumb .bc-current { color: var(--text-mid); font-weight: 500; }

/* ========================================================
   TRUST BAR
   ======================================================== */
.trust-bar {
  background: var(--dark);
  padding: 1rem 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.trust-item svg { color: #888888; flex-shrink: 0; }

/* ========================================================
   FOOTER
   ======================================================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}
.footer-main {
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: .8rem;
}
.footer-logo span { color: #888888; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social a:hover {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.footer-col address strong { color: rgba(255,255,255,.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ========================================================
   HOMEPAGE HERO
   ======================================================== */
.home-hero {
  background: linear-gradient(160deg, #f7f9fc 0%, #f0f0f0 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
/* Foto-Hintergrund der schrägen rechten Fläche */
.home-hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 55%;
  height: 130%;
  background-image: url('scheibentoenung.jpg');
  background-size: cover;
  background-position: center 40%;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
/* Dunkles Overlay über dem Foto */
.home-hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 55%;
  height: 130%;
  background: rgba(0,0,0,.62);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.home-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 1;
}
.home-hero-text {}
.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.home-hero-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--accent);
}
.home-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.home-hero h1 em { color: var(--accent); font-style: normal; display: block; }
.home-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 440px;
}
.home-hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.home-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding-bottom: 1rem;
}
.hero-badge-row {
  display: flex;
  justify-content: flex-end;
  gap: .8rem;
  margin-bottom: 0;
}
.hero-badge-item {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: .9rem 1.2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-badge-num {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-badge-num .sup { font-size: 60%; color: #888888; }
.hero-badge-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
}
.hero-car-visual {
  width: 100%;
  padding: 2rem;
  position: relative;
}

/* ========================================================
   SERVICE OVERVIEW (Homepage)
   ======================================================== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 100%;
  height: 3px;
  background: var(--accent);
  transition: right .4s var(--ease);
}
.service-card:hover::before { right: 0; }
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(0,0,0,.2);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
}
.service-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: .5rem;
}

/* ========================================================
   STATS
   ======================================================== */
.stats-section { background: var(--dark); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
}
.stat-cell {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: flex; align-items: flex-start; justify-content: center;
}
.stat-num .suf { font-size: 55%; color: #888888; margin-top: .2em; }
.stat-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .5rem;
}

/* ========================================================
   BEFORE / AFTER SLIDER
   ======================================================== */
.ba-container { position: relative; max-width: 820px; margin: 0 auto; }
.ba-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  touch-action: none;
  aspect-ratio: 16/9;
  background: var(--bg2);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
}
.ba-item * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.ba-item img {
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.ba-panel {
  position: absolute; inset: 0;
  overflow: hidden;
}
.ba-panel img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none;
}
.ba-panel-before {
  background: var(--bg2);
}
.ba-panel-after {
  clip-path: inset(0 50% 0 0);
  background: var(--dark-2);
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 3px;
}
.ba-label-b { left: 1rem; background: rgba(255,255,255,.85); color: var(--dark); }
.ba-label-a { right: 1rem; background: var(--accent); color: var(--white); }
.ba-handle-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,.3);
  z-index: 10;
  pointer-events: none;
}
.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  color: var(--dark);
  z-index: 11;
  pointer-events: none;
}
.ba-before-content, .ba-after-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem;
}
.ba-car-label {
  position: absolute;
  bottom: 1rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.45);
  padding: .25rem .7rem;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
}

/* ========================================================
   GALLERY GRID
   ======================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--bg2);
}
.g-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.g-item:nth-child(2) { grid-column: span 5; }
.g-item:nth-child(3) { grid-column: span 5; }
.g-item:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.g-item:nth-child(5) { grid-column: span 4; }
.g-item:nth-child(6) { grid-column: span 4; }
.g-item:nth-child(7) { grid-column: span 5; grid-row: span 2; }
.g-item:nth-child(8) { grid-column: span 7; }
.g-item:nth-child(9) { grid-column: span 7; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: .2rem;
}
.g-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
/* placeholder car bg */
.g-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* ========================================================
   TINTING LEVELS
   ======================================================== */
.tint-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.tint-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.tint-visual {
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tint-label {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.tint-name {
  padding: .6rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ========================================================
   PROCESS STEPS
   ======================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(0,0,0,.2));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem 1.5rem;
  position: relative;
}
.step-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.2rem;
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.process-step h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem;
}
.process-step p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial-text {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: .8rem;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.author-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
.author-meta {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .1rem;
}

/* ========================================================
   FAQ ACCORDION
   ======================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
  font-size: .98rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, transform .3s;
  color: var(--text-mid);
}
.faq-item.open .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-answer {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.2rem;
}

/* ========================================================
   CONTACT FORM & INFO
   ======================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.contact-value {
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
  font-weight: 500;
  transition: color .2s;
}
a.contact-value:hover { color: var(--accent); }

/* Form */
.form-grid { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-b);
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 110px; }

/* ========================================================
   GUARANTEE BAND
   ======================================================== */
.guarantee-band {
  background: var(--dark);
  padding: 2.5rem 0;
}
.guarantee-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.guarantee-text h3 {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}
.guarantee-text p { font-size: .9rem; color: rgba(255,255,255,.55); margin-top: .3rem; }
.guarantee-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.g-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: .8rem 1.2rem;
  text-align: center;
}
.g-badge-num {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: #888888;
  line-height: 1;
}
.g-badge-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .2rem;
}

/* ========================================================
   MAP placeholder
   ======================================================== */
.map-box {
  height: 280px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-box iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ========================================================
   ÜBER UNS – USP CARDS
   ======================================================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.usp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.usp-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.usp-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.usp-card h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .4rem;
}
.usp-card p { font-size: .88rem; line-height: 1.7; color: var(--text-mid); }

/* Floating CTA */
#float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
#float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ========================================================
   RESPONSIVE
   ======================================================== */

/* ── Tablet wide ── */
@media (max-width: 1100px) {
  .home-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .home-hero::before { display: none; }
  .home-hero::after  { display: none; }
  .home-hero { background: var(--bg); }
  .home-hero-visual  { display: none; }
  .home-hero h1      { font-size: 3rem; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tint-grid         { grid-template-columns: repeat(3, 1fr); }
  .why-grid          { grid-template-columns: 1fr !important; gap: 3rem !important; }
}

/* ── Tablet narrow ── */
@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger         { display: flex; }
  .service-cards     { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-split     { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps     { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .g-item            { grid-column: span 1 !important; grid-row: span 1 !important; }
  .usp-grid          { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .gallery-mini-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  /* Hard block on any overflow */
  body { overflow-x: hidden !important; }
  * { max-width: 100%; }

  .section      { padding: 3rem 0; }
  .section-sm   { padding: 2rem 0; }
  .container    { padding: 0 1rem; }

  /* Hero */
  .home-hero           { padding: 2.5rem 0; }
  .home-hero h1        { font-size: 2rem; line-height: 1.1; }
  .home-hero-eyebrow   { font-size: .7rem; }
  .home-hero-desc      { font-size: .9rem; }
  .home-hero-actions   { flex-direction: column; gap: .7rem; }
  .home-hero-actions .btn { width: 100%; justify-content: center; }

  /* Section titles */
  .section-title { font-size: 1.9rem; }
  .page-hero-title { font-size: 1.8rem !important; line-height: 1.15; }
  .page-hero-text  { font-size: .9rem; }

  /* Service cards */
  .service-cards { grid-template-columns: 1fr; gap: 1rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num   { font-size: 2.4rem; }

  /* Why-us inline grid → single column */
  .why-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* USP grid */
  .usp-grid { grid-template-columns: 1fr; }

  /* Before/after slider */
  .ba-container { margin: 0; }
  .ba-item      { height: 220px; }
  .ba-handle-btn { width: 36px; height: 36px; }

  /* Mini gallery: 2 columns on mobile */
  .gallery-mini-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; }

  /* Process steps */
  .process-steps       { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps::before { display: none; }
  .step-circle         { width: 52px; height: 52px; font-size: .9rem; }

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

  /* Trust bar */
  .trust-bar-inner { gap: .6rem; flex-wrap: wrap; }
  .trust-item      { font-size: .75rem; gap: .3rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom > .container { flex-direction: column; align-items: flex-start; gap: .6rem; }

  /* Tint grid */
  .tint-grid { grid-template-columns: repeat(2, 1fr); }

  /* Guarantee */
  .guarantee-inner { flex-direction: column; }

  /* Float CTA */
  #float-cta { bottom: 1rem; right: 1rem; }

  /* BA labels */
  .ba-label { font-size: .6rem; padding: .25rem .5rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: .78rem; }

  /* Legal pages */
  .legal-page { padding: calc(var(--nav-h) + 1.5rem) 1rem 3rem; }

  /* Mobile drawer nav links */
  .drawer-nav a { padding: 1.1rem 1.25rem; font-size: 1.1rem; }

  /* Parallax hero sections */
  .page-hero-img        { padding: 3.5rem 0 3rem; }
  .page-hero-autoglas   { padding: 3.5rem 0 3rem; }
  .ag-parallax-inner    { padding: 3rem 0 2.5rem; }
  .values-parallax-inner { padding: 3rem 0 2.5rem; }

  /* Disable parallax movement on mobile (avoid edge flicker) */
  .page-hero-parallax-bg,
  .ag-hero-parallax-bg,
  .ag-parallax-bg,
  .values-parallax-bg { will-change: auto; }
}

/* ── Small phones (≤ 380px) ── */
@media (max-width: 380px) {
  .home-hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.65rem; }
  .page-hero-title { font-size: 1.55rem !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .stat-num   { font-size: 2rem; }
  .ba-item    { height: 190px; }
}

/* ========================================================
   COOKIE BANNER
   ======================================================== */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--dark-2);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 2rem;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
#cookie-banner.show { display: flex; }
#cookie-banner p {
  flex: 1;
  font-size: .84rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin: 0;
  min-width: 200px;
}
#cookie-banner a { color: rgba(255,255,255,.9); text-decoration: underline; }
.cookie-btn-row {
  display: flex;
  gap: .7rem;
  flex-shrink: 0;
}
.cookie-accept {
  padding: .55rem 1.4rem;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 5px;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.cookie-accept:hover { background: var(--bg); transform: translateY(-1px); }
.cookie-decline {
  padding: .55rem 1.1rem;
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 5px;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; padding: 1.2rem 1.4rem; gap: 1rem; }
  .cookie-btn-row { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}
