/* =============================================================
   STAR CAR Werkstatt — Styles
   ============================================================= */

/* ---------- Variablen ---------- */
:root {
  --green: #22C55E;
  --green-dark: #16A34A;
  --green-glow: rgba(34, 197, 94, 0.35);
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --gray: #2A2A2A;
  --gray-2: #3A3A3A;
  --muted: #A3A3A3;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 40px rgba(0,0,0,0.45);
  --shadow-green: 0 10px 30px var(--green-glow);
  --container: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: #D4D4D4; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  text-align: center; white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: #04150A;
  box-shadow: 0 10px 30px rgba(34,197,94,.25);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(34,197,94,.45); }
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.25);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.1);
}
.btn-ghost:hover { background: rgba(34,197,94,.12); border-color: var(--green); color: var(--green); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s var(--ease), backdrop-filter .3s, box-shadow .3s, padding .3s;
  padding: 16px 0;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { height: 44px; width: auto; }
.navbar.scrolled .logo-svg { height: 38px; }
.nav-menu { display: flex; gap: 28px; }
.nav-menu a {
  font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.85);
  position: relative; transition: color .2s;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--green); transition: width .25s var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { padding: 11px 20px; font-size: .9rem; }

.nav-toggle {
  display: none; background: transparent; border: 0; width: 42px; height: 42px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: transform .25s, opacity .25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(10,10,10,.97); backdrop-filter: blur(14px);
  padding: 20px 22px 28px; display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.nav-mobile a { font-weight: 600; padding: 10px 0; color: #fff; border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-mobile a.btn { border: 2px solid transparent; margin-top: 8px; }

@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Sticky Floating Buttons ---------- */
.sticky-buttons {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.sticky-wrap { position: relative; }
.sticky-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 0; box-shadow: 0 10px 25px rgba(0,0,0,.45);
  transition: transform .25s var(--ease), box-shadow .25s;
  position: relative;
}
.sticky-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
  z-index: -1;
}
.sticky-wa { background: #25D366; }
.sticky-wa::before { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
.sticky-tel { background: var(--green); }
.sticky-tel::before { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
.sticky-btn:hover { transform: translateY(-3px) scale(1.05); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* WhatsApp Popup */
.wa-popup {
  position: absolute; right: 0; bottom: 72px; width: 300px;
  background: #fff; color: #111; border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  padding: 16px; animation: popIn .25s var(--ease);
}
.wa-popup::after {
  content: ''; position: absolute; right: 18px; bottom: -8px; width: 16px; height: 16px;
  background: #fff; transform: rotate(45deg);
}
.wa-popup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.wa-popup-header strong { font-size: 1rem; color: #075E54; }
.wa-close { border: 0; background: transparent; font-size: 1.4rem; line-height: 1; color: #777; padding: 0 4px; }
.wa-popup-sub { margin: 0 0 12px; font-size: .85rem; color: #555; }
.wa-chips { display: flex; flex-direction: column; gap: 8px; }
.wa-chip {
  background: #F0FDF4; color: #14532D; padding: 10px 14px; border-radius: 12px;
  font-size: .88rem; font-weight: 500; cursor: pointer;
  border: 1px solid #DCFCE7; transition: background .2s, border-color .2s, transform .15s;
}
.wa-chip:hover { background: #DCFCE7; border-color: #22C55E; transform: translateX(-2px); }

@keyframes popIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .sticky-buttons { right: 14px; bottom: 14px; gap: 12px; }
  .sticky-btn { width: 54px; height: 54px; }
  .wa-popup { width: calc(100vw - 32px); right: -4px; }
}

/* ---------- Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 100px; overflow: hidden;
  background: radial-gradient(ellipse at 30% 0%, #1a1a1a 0%, #0a0a0a 60%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 1; filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.20) 0%, rgba(10,10,10,.40) 55%, rgba(10,10,10,.95) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(34,197,94,.10) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 2; max-width: 950px; }
.hero h1, .hero-sub, .hero-eyebrow, .hero-trust { text-shadow: 0 2px 18px rgba(0,0,0,.65); }

.hero-eyebrow {
  display: inline-block; padding: 8px 16px; margin-bottom: 22px;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.35); border-radius: 999px;
}
/* ---------- HERO „30 Jahre Erfahrung" neben dem Titel ---------- */
.hero-title-row {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-title-row h1 { flex: 1 1 460px; margin: 0; }
.hero-experience {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(34,197,94,.06));
  border-left: 4px solid var(--green);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.hero-experience-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: .9; letter-spacing: -.02em;
  color: var(--green);
  text-shadow: 0 4px 20px rgba(34,197,94,.45);
}
.hero-experience-text {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(.92rem, 1.2vw, 1.1rem);
  line-height: 1.1; letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 720px) {
  .hero-title-row { gap: 20px; }
  .hero-experience { padding: 12px 18px 12px 14px; gap: 12px; }
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 18px; }
.hero h1 .green { color: var(--green); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #D4D4D4; max-width: 640px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  font-size: .9rem; color: #BDBDBD;
}
.hero-trust span:first-child { color: var(--green); letter-spacing: 2px; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
}
.hero-scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--green); border-radius: 2px;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 16px); opacity: 0; }
}

@media (max-width: 600px) {
  .hero { padding: 110px 0 80px; min-height: 90vh; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-scroll { display: none; }
}

/* ---------- QUICK INQUIRY (direkt unter Hero) ---------- */
.quick-inquiry {
  position: relative; z-index: 5;
  margin-top: -60px; padding: 0 22px 10px;
}
.quick-inquiry-inner {
  max-width: var(--container); margin: 0 auto;
  background: linear-gradient(180deg, #161616 0%, #0E0E0E 100%);
  border: 1px solid rgba(34,197,94,.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(34,197,94,.10);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px; align-items: center;
}
.quick-inquiry-text { display: flex; flex-direction: column; gap: 2px; min-width: 200px; }
.quick-inquiry-text strong {
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #fff;
}
.quick-inquiry-text span { color: var(--green); font-size: .85rem; font-weight: 600; letter-spacing: .04em; }
.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px; align-items: stretch;
}
.quick-form input,
.quick-form select {
  background: #0B0B0B; color: #fff;
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  padding: 12px 14px; font: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
  min-width: 0;
}
.quick-form input::placeholder { color: #6A6A6A; }
.quick-form input:focus,
.quick-form select:focus {
  outline: none; border-color: var(--green);
  background: #0F0F0F;
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
}
.quick-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2322C55E' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.quick-form .btn { padding: 12px 22px; white-space: nowrap; }
.quick-success {
  grid-column: 1 / -1;
  background: rgba(34,197,94,.10); border: 1px solid rgba(34,197,94,.4);
  border-radius: var(--radius); padding: 14px 18px;
  color: #D7F8E2; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.quick-success strong { color: var(--green); }
.quick-error {
  grid-column: 1 / -1;
  background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.4);
  border-radius: var(--radius); padding: 14px 18px;
  color: #FCD9D9;
}
@media (max-width: 1000px) {
  .quick-inquiry-inner { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .quick-form { grid-template-columns: 1fr 1fr; }
  .quick-form .btn { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .quick-inquiry { margin-top: -40px; }
  .quick-form { grid-template-columns: 1fr; }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: #0F0F0F; border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 32px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
}
.trust-item svg { flex-shrink: 0; }
.trust-item strong {
  display: block; font-family: var(--font-head); font-weight: 700;
  color: #fff; font-size: 1rem;
}
.trust-item span { display: block; font-size: .85rem; color: var(--muted); }

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- Generic Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block; padding: 6px 14px; margin-bottom: 16px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25); border-radius: 999px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head .green { color: var(--green); }
.section-sub { color: var(--muted); font-size: 1.05rem; }

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ---------- LEISTUNGEN ---------- */
.leistungen { background: #0B0B0B; }
.cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.card {
  position: relative;
  background: linear-gradient(180deg, #181818 0%, #111111 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(34,197,94,.08), transparent 70%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,.5);
  box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(34,197,94,.15);
}
.card:hover::before { opacity: 1; }
.card-image {
  position: relative;
  width: 100%; height: 180px;
  overflow: hidden;
  background: #1A1A1A;
  border-bottom: 1px solid rgba(34,197,94,.18);
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease), filter .35s;
  filter: saturate(.95) contrast(1.02);
}
.card-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.55) 100%);
  pointer-events: none;
}
.card:hover .card-image img { transform: scale(1.06); filter: saturate(1.05) contrast(1.05); }
.card-image.img-missing { background: repeating-linear-gradient(45deg, #1a1a1a, #1a1a1a 10px, #222 10px, #222 20px); }
.card-image.img-missing::before {
  content: 'Bild folgt'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .9rem; font-weight: 600;
}
.card-image.img-missing img { display: none; }
.card-body { padding: 22px 24px 26px; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin-bottom: 14px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25);
  border-radius: 12px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { font-size: .92rem; color: var(--muted); margin: 0; }

@media (max-width: 1100px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cards-grid { grid-template-columns: 1fr; } }

/* ---------- ANGEBOTE ---------- */
.angebote {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(34,197,94,.12), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(34,197,94,.08), transparent 50%),
    #0A0A0A;
  position: relative;
}
.angebote-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.angebote-eyebrow {
  background: linear-gradient(90deg, rgba(34,197,94,.2), rgba(34,197,94,.1));
  border-color: rgba(34,197,94,.5);
}
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.price-card {
  position: relative; padding: 36px 28px;
  background: linear-gradient(180deg, #161616 0%, #0E0E0E 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34,197,94,.45);
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(34,197,94,.15);
}
.price-card.featured {
  border-color: rgba(34,197,94,.55);
  background:
    radial-gradient(ellipse at top, rgba(34,197,94,.15), transparent 60%),
    linear-gradient(180deg, #1A1A1A 0%, #0E0E0E 100%);
  box-shadow: 0 24px 60px rgba(34,197,94,.18);
  transform: translateY(-6px);
}
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px; background: var(--green); color: #04150A;
  font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(34,197,94,.4);
}
.price-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; margin-bottom: 18px;
  background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3);
  border-radius: 16px;
}
.price-card h3 { font-size: 1.45rem; margin-bottom: 6px; }
.price-desc { color: var(--muted); font-size: .92rem; margin-bottom: 22px; min-height: 2.6em; }
.price {
  display: flex; justify-content: center; align-items: baseline;
  gap: 6px; margin-bottom: 26px;
}
.price-prefix { font-size: .95rem; color: var(--muted); font-weight: 500; }
.price-num {
  font-family: var(--font-head); font-size: 3.4rem; font-weight: 800;
  color: var(--green); line-height: 1; letter-spacing: -.02em;
}
.price-suffix { font-size: 1.1rem; font-weight: 700; color: var(--green); }
.price-cta { width: 100%; }
.angebote-fine {
  text-align: center; color: var(--muted); font-size: .82rem;
  margin-top: 36px;
}

@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- ERGEBNISSE / KARUSSELL ---------- */
.ergebnisse { background: #0B0B0B; padding-bottom: 80px; }
.ergebnisse-swiper {
  width: 100%;
  padding: 30px 60px 60px;
  position: relative;
}
.ergebnisse-swiper .swiper-slide {
  width: 380px; height: 280px;
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .4s var(--ease);
}
.ergebnisse-swiper .slide-inner {
  position: relative; width: 100%; height: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: #1A1A1A;
}
.ergebnisse-swiper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.ergebnisse-swiper .swiper-slide:hover img { transform: scale(1.06); }
.slide-label {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 14px; background: rgba(10,10,10,.78);
  backdrop-filter: blur(8px); border: 1px solid rgba(34,197,94,.4);
  color: #fff; font-size: .82rem; font-weight: 600;
  border-radius: 999px;
}
.img-missing {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #1a1a1a, #1a1a1a 10px, #222 10px, #222 20px);
}
.img-missing::after {
  content: 'Bild folgt'; color: var(--muted); font-size: .9rem; font-weight: 600;
}
.img-missing img { display: none; }

.ergebnisse-swiper .swiper-button-prev,
.ergebnisse-swiper .swiper-button-next {
  width: 48px; height: 48px;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.4);
  border-radius: 50%;
  color: var(--green);
  --swiper-navigation-size: 18px;
  transition: background .25s, transform .25s;
}
.ergebnisse-swiper .swiper-button-prev:hover,
.ergebnisse-swiper .swiper-button-next:hover {
  background: var(--green); color: #04150A; transform: scale(1.08);
}
.ergebnisse-swiper .swiper-button-prev::after,
.ergebnisse-swiper .swiper-button-next::after { font-weight: 800; }

.ergebnisse-swiper .swiper-pagination {
  position: absolute; bottom: 18px;
}
.ergebnisse-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,.3); opacity: 1; width: 10px; height: 10px;
}
.ergebnisse-swiper .swiper-pagination-bullet-active { background: var(--green); width: 30px; border-radius: 5px; }

@media (max-width: 600px) {
  .ergebnisse-swiper { padding: 20px 20px 50px; }
  .ergebnisse-swiper .swiper-slide { width: 88vw; height: 240px; }
  .ergebnisse-swiper .swiper-button-prev,
  .ergebnisse-swiper .swiper-button-next { display: none; }
}

/* ---------- GALERIE ---------- */
.galerie { background: #0A0A0A; padding-top: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-item {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: #1A1A1A; border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease), filter .35s;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5));
  opacity: .6; transition: opacity .3s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: .35; }

@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center;
  padding: 40px; animation: fadeIn .25s;
}
.lightbox[hidden] { display: none !important; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  background: rgba(255,255,255,.1); border: 0; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.8rem; line-height: 1;
}
.lightbox-close:hover { background: var(--green); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- ÜBER UNS ---------- */
.ueber { background: #0B0B0B; }
.ueber-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  margin-bottom: 70px;
}
.ueber-text h2 { margin-top: 16px; }
.ueber-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 24px 0 30px;
}
.ueber-features div {
  display: flex; align-items: center; gap: 10px;
  color: #D4D4D4; font-size: .95rem;
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(34,197,94,.18); color: var(--green); font-weight: 700;
}
.ueber-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.ueber-image {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  background: #1A1A1A;
  aspect-ratio: 4/3;
}
.ueber-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) contrast(1.05); }

.ueber-map-wrap { text-align: center; }
.map-title { font-size: 1.4rem; margin-bottom: 4px; }
.map-addr { color: var(--muted); margin-bottom: 22px; }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  aspect-ratio: 16/7;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: invert(.9) hue-rotate(180deg) saturate(.8); }

@media (max-width: 900px) {
  .ueber-grid { grid-template-columns: 1fr; gap: 36px; }
  .map-frame { aspect-ratio: 4/3; }
  .ueber-features { grid-template-columns: 1fr; }
}

/* ---------- TERMIN / FORMULAR ---------- */
.termin {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(34,197,94,.1), transparent 50%),
    #0A0A0A;
}
.termin-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start;
}
.termin-form-wrap > h2 { margin-top: 14px; margin-bottom: 8px; }
.termin-form-wrap > .section-sub { margin-bottom: 32px; }

.termin-form {
  background: linear-gradient(180deg, #161616 0%, #0F0F0F 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { margin-bottom: 14px; }
.form-field span {
  font-size: .82rem; font-weight: 600; color: #C5C5C5;
  letter-spacing: .02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #0B0B0B; color: #fff;
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  padding: 12px 14px; font: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #6A6A6A; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--green);
  background: #0F0F0F;
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2322C55E' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 22px;
  font-size: .85rem; color: #C5C5C5; line-height: 1.5;
}
.form-checkbox input { accent-color: var(--green); margin-top: 2px; }
.form-checkbox a { color: var(--green); text-decoration: underline; }
.form-submit { width: 100%; }
.form-hint {
  margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center;
}

.form-success, .form-error {
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.4);
  border-radius: var(--radius); padding: 24px; margin-top: 20px;
  text-align: center;
  animation: popIn .35s var(--ease);
}
.form-error { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.4); }
.form-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin-bottom: 12px;
  background: var(--green); color: #04150A; border-radius: 50%;
  font-size: 1.8rem; font-weight: 800;
}
.form-success h3 { margin-bottom: 4px; }
.form-success p, .form-error p { margin: 0; color: #D4D4D4; }

@media (max-width: 600px) {
  .termin-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Termin Info / Kontakt-Karte ---------- */
.termin-info { position: sticky; top: 90px; }
.info-card {
  background: linear-gradient(180deg, #181818 0%, #0F0F0F 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.info-card h3 { margin-bottom: 6px; }
.info-sub { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.info-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: transform .2s;
}
.info-row:not(.info-row-static):hover { transform: translateX(4px); }
.info-row strong { display: block; color: #fff; font-size: .98rem; }
.info-row span { font-size: .9rem; color: var(--muted); }
.info-row-static { cursor: default; }
.info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25);
  border-radius: 10px;
}
.info-hours {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.info-hours strong { display: block; color: var(--green); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.info-hours span { color: var(--muted); font-size: .9rem; }

@media (max-width: 980px) {
  .termin-grid { grid-template-columns: 1fr; }
  .termin-info { position: static; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #060606; border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: var(--green); font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-col p { color: #B5B5B5; font-size: .92rem; line-height: 1.8; margin: 0 0 12px; }
.footer-col a { color: #D4D4D4; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-brand .logo-svg { height: 50px; margin-bottom: 14px; }
.footer-hours strong { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0; color: var(--muted); font-size: .85rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ---------- LEGAL PAGES (Impressum / Datenschutz) ---------- */
.legal-page { padding: 120px 0 60px; min-height: 80vh; }
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem); color: #fff;
  margin-bottom: 6px;
}
.legal-page h2 {
  font-size: 1.25rem; color: var(--green);
  margin-top: 2.2em; margin-bottom: .6em;
}
.legal-page p { color: #D4D4D4; max-width: 780px; }
.legal-page a { color: var(--green); text-decoration: underline; }
.legal-meta { color: var(--muted); font-size: .9rem; margin-bottom: 30px; }
.legal-back { margin-top: 40px; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .sticky-btn::before { display: none; }
}

/* ---------- Selection / Focus visible ---------- */
::selection { background: var(--green); color: #04150A; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
.sticky-btn:focus-visible { outline-offset: 5px; }

/* ---------- MOBILE OPTIMIERUNGEN (≤600px) ---------- */
@media (max-width: 600px) {

  /* Navbar & Logo deutlich größer */
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .logo-svg { height: 56px; }
  .navbar.scrolled .logo-svg { height: 48px; }
  .nav-toggle { width: 48px; height: 48px; }
  .nav-toggle span { width: 26px; height: 3px; }

  /* Mobile-Drawer-Menü Punkte größer & besser tappbar */
  .nav-mobile { padding: 22px 22px 30px; }
  .nav-mobile a { font-size: 1.08rem; padding: 14px 0; }

  /* HERO — Headline und Begleittexte spürbar größer */
  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero h1 { font-size: 2.5rem; line-height: 1.12; }
  .hero-sub { font-size: 1.12rem; line-height: 1.5; margin-bottom: 28px; }
  .hero-eyebrow { font-size: .82rem; padding: 8px 14px; }
  .hero-trust { font-size: 1rem; gap: 10px 8px; }

  /* HERO — 30 Jahre Erfahrung größer + saubere Stapelung */
  .hero-title-row { gap: 18px; }
  .hero-experience { padding: 14px 18px; gap: 12px; }
  .hero-experience-num { font-size: 3.4rem; }
  .hero-experience-text { font-size: 1rem; letter-spacing: .12em; }

  /* HERO — CTAs voll-breit, gut tappbar */
  .hero-ctas { gap: 12px; margin-bottom: 32px; }
  .hero-ctas .btn { flex: 1 1 100%; padding: 18px 24px; font-size: 1.08rem; min-height: 56px; }

  /* Section Headers größer */
  .section-head h2 { font-size: 2.05rem; }
  .section-head { margin-bottom: 36px; }
  .section-sub { font-size: 1.05rem; line-height: 1.55; }
  .section-eyebrow { font-size: .82rem; padding: 6px 14px; }

  /* Leistungs-Karten lesbarer */
  .card-image { height: 200px; }
  .card-body { padding: 22px 22px 26px; }
  .card h3 { font-size: 1.25rem; }
  .card p { font-size: 1rem; line-height: 1.55; }

  /* Trust-Strip Items größer */
  .trust-item strong { font-size: 1.05rem; }
  .trust-item span { font-size: .95rem; }

  /* Angebote / Preis-Karten */
  .price-card { padding: 32px 24px; }
  .price-card h3 { font-size: 1.45rem; }
  .price-desc { font-size: 1rem; min-height: 0; margin-bottom: 18px; }
  .price-num { font-size: 3rem; }
  .price-suffix { font-size: 1.15rem; }
  .price-cta { padding: 16px 22px; font-size: 1.05rem; min-height: 54px; }

  /* Ergebnisse-Karussell Labels */
  .ergebnisse-swiper .slide-label { font-size: .92rem; padding: 7px 14px; }

  /* Galerie */
  .gallery-grid { gap: 12px; grid-auto-rows: 160px; }

  /* Über uns / Features */
  .ueber-text p { font-size: 1.02rem; line-height: 1.6; }
  .ueber-features div { font-size: 1.02rem; }
  .ueber-ctas { gap: 12px; }
  .ueber-ctas .btn { flex: 1 1 100%; padding: 16px 22px; font-size: 1.05rem; min-height: 54px; }
  .map-title { font-size: 1.3rem; }
  .map-addr { font-size: 1rem; }

  /* Termin-Formular gut tappbar */
  .termin-form { padding: 24px; }
  .form-field span { font-size: .9rem; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 1rem;
    padding: 14px 14px;
    min-height: 52px;
  }
  .form-field textarea { min-height: 120px; }
  .form-checkbox { font-size: .95rem; }
  .form-submit { padding: 18px 24px; font-size: 1.1rem; min-height: 58px; }
  .form-hint { font-size: .9rem; }

  /* Schnellanfrage (Hero-Form) */
  .quick-inquiry { margin-top: -30px; }
  .quick-inquiry-text strong { font-size: 1.25rem; }
  .quick-inquiry-text span { font-size: .92rem; }
  .quick-form input,
  .quick-form select {
    font-size: 1rem; padding: 14px 14px; min-height: 52px;
  }
  .quick-form .btn { min-height: 54px; padding: 16px 22px; font-size: 1.05rem; }

  /* Info-Karte (Kontakt) */
  .info-card { padding: 26px 22px; }
  .info-row { padding: 16px 0; gap: 16px; }
  .info-row strong { font-size: 1.05rem; }
  .info-row span { font-size: .98rem; }
  .info-icon { width: 46px; height: 46px; }

  /* Sticky-Buttons deutlich größer */
  .sticky-buttons { right: 16px; bottom: 16px; gap: 16px; }
  .sticky-btn { width: 64px; height: 64px; }
  .sticky-btn svg { width: 30px; height: 30px; }
  .wa-popup { width: calc(100vw - 32px); right: -4px; padding: 18px; }
  .wa-popup-header strong { font-size: 1.05rem; }
  .wa-chip { padding: 12px 16px; font-size: .95rem; }

  /* Footer */
  .footer-col p, .footer-col a { font-size: 1rem; line-height: 1.75; }
  .footer-col h4 { font-size: .88rem; }
  .footer-brand .logo-svg { height: 56px; }
  .footer-bottom { font-size: .92rem; }

  /* Allgemein Fließtext mindestens 16px sicherstellen */
  body, p { font-size: 1rem; }

  /* Generic Buttons als sichere Tap-Targets */
  .btn { min-height: 52px; }
  .btn-lg { min-height: 56px; padding: 17px 28px; font-size: 1.05rem; }
}

/* Sehr schmale Geräte (≤400px) — etwas kompakter */
@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-experience-num { font-size: 3rem; }
  .section-head h2 { font-size: 1.85rem; }
  .price-num { font-size: 2.7rem; }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .sticky-buttons, .hero-scroll, .ergebnisse-swiper, .map-frame iframe { display: none !important; }
  body { background: #fff; color: #000; }
}
