/* =============================================================
   Landingpage Builder — Design System
   One stylesheet, 4 swappable themes via [data-theme].
   Set the theme on <html data-theme="clean|bold|elegant|earthy">.
   ============================================================= */

/* ---------- Base tokens (shared by all themes) ---------- */
:root {
  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6.5rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Type scale (fluid) */
  --fs-hero: clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2: clamp(1.9rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;

  /* Defaults (overridden per theme) */
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.16);
}

/* ---------- THEME: Clean & Minimal (Beratung, Agentur, IT) ---------- */
[data-theme="clean"] {
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --color-bg: #ffffff;
  --color-surface: #f6f8fb;
  --color-surface-2: #eef2f8;
  --color-text: #0f172a;
  --color-text-muted: #5b6678;
  --color-primary: #2563eb;
  --color-primary-strong: #1d4ed8;
  --color-primary-contrast: #ffffff;
  --color-accent: #06b6d4;
  --color-border: #e3e9f1;
  --hero-overlay: linear-gradient(115deg, rgba(37, 99, 235, 0.78), rgba(6, 182, 212, 0.62));
}

/* ---------- THEME: Bold & Modern (Barbershop, Fitness, Tattoo) ---------- */
[data-theme="bold"] {
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  /* Graphit-Basis — dunkel, aber nicht schwarz ("nicht zu dunkel") */
  --color-bg: #121722;
  --color-surface: #1a2030;
  --color-surface-2: #232b3d;
  --color-text: #f4f6fb;
  --color-text-muted: #a3afc6;
  /* Echtes Marken-Rot (Logo/Gebäude) als Signal-/Anruf-Akzent */
  --color-primary: #e2231a;
  --color-primary-strong: #c0150d;
  --color-primary-contrast: #ffffff;
  /* Glas-Cyan nur als dezenter Schimmer */
  --color-accent: #5ec8e8;
  --color-border: #2c3548;
  /* Hero-Overlay: graphit + warmer Rot-Hauch, dunkel genug für weißen Text, aber freundlich */
  --hero-overlay: linear-gradient(118deg, rgba(15, 19, 28, 0.86) 8%, rgba(18, 23, 34, 0.55) 48%, rgba(226, 35, 26, 0.30) 100%);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.55);
}

/* ---------- THEME: Elegant & Premium (Salon, Kosmetik, Spa) ---------- */
[data-theme="elegant"] {
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --color-bg: #14110f;
  --color-surface: #1d1916;
  --color-surface-2: #261f1b;
  --color-text: #f6efe7;
  --color-text-muted: #b6a99b;
  --color-primary: #c8a667;
  --color-primary-strong: #b8924d;
  --color-primary-contrast: #1a1512;
  --color-accent: #e7d6b8;
  --color-border: #34291f;
  --hero-overlay: linear-gradient(180deg, rgba(20, 17, 15, 0.22), rgba(20, 17, 15, 0.60));
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* ---------- THEME: Bodenständig & Vertrauensvoll (Handwerk, Maler) ---------- */
[data-theme="earthy"] {
  --font-display: "Bitter", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --color-bg: #fbf7f1;
  --color-surface: #ffffff;
  --color-surface-2: #f1e8dc;
  --color-text: #1f2a24;
  --color-text-muted: #5d6b62;
  --color-primary: #c2410c;
  --color-primary-strong: #9a3412;
  --color-primary-contrast: #ffffff;
  --color-accent: #15803d;
  --color-border: #e7dccb;
  --hero-overlay: linear-gradient(115deg, rgba(31, 42, 36, 0.72), rgba(194, 65, 12, 0.45));
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }
:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-lg); }
.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: var(--space-2xl); }
.section--surface { background: var(--color-surface); }
.section-head { max-width: var(--container-narrow); margin-inline: auto; text-align: center; margin-bottom: var(--space-2xl); }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; font-size: var(--fs-small);
  color: var(--color-primary); margin-bottom: var(--space-sm);
}
.section-head h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.section-head p { font-size: var(--fs-lead); color: var(--color-text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.95em 1.7em; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--color-primary); color: var(--color-primary-contrast); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--color-primary-strong); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--on-hero { backdrop-filter: blur(4px); }
.btn--lg { font-size: 1.08rem; padding: 1.05em 2em; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding-block: var(--space-md);
}
.header.is-scrolled {
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
  padding-block: var(--space-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); }
.brand { display: flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: var(--color-primary); color: var(--color-primary-contrast); font-weight: 800;
}
/* Echtes Kundenlogo (statt Monogramm). Höhe begrenzt, Breite frei → kein Verzerren. */
.brand__logo { height: 40px; width: auto; max-width: 190px; object-fit: contain; display: block; }
/* Dunkles Logo auf dunklem Header schlecht sichtbar? Heller „Chip" als Hintergrund. */
.brand__logo--chip { background: #fff; padding: 6px 10px; border-radius: 10px; box-sizing: content-box; }
.nav__links { display: flex; align-items: center; gap: var(--space-lg); }
.nav__links a { font-weight: 600; color: var(--color-text-muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--color-text); }
.nav__cta { display: flex; align-items: center; gap: var(--space-sm); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2.5px; background: var(--color-text); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding-top: 6rem; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.1) saturate(1.04); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); z-index: 1; }
/* Ken-Burns: zügiger, gut sichtbarer, weicher Zoom auf das echte Hero-Foto (Standard, kein KI-Video). „alternate" pendelt zurück → kein harter Loop-Reset. Greift nur auf <img>, nicht auf ein evtl. eingebautes <video>. Tempo/Stärke hier anpassen (10s + ~11% Zoom = lebendig; für ruhigere Marken 14–18s). */
.hero__media img { transform-origin: 50% 42%; animation: heroKenBurns 10s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroKenBurns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.15) translate3d(-2%, -1.4%, 0); }
}
.hero__inner { max-width: 760px; color: #fff; }
[data-theme="clean"] .hero__inner, [data-theme="earthy"] .hero__inner { color: #fff; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5em; padding: 0.45em 1em; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25);
  font-size: var(--fs-small); font-weight: 600; margin-bottom: var(--space-lg);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.3); }
.hero h1 { font-size: var(--fs-hero); margin-bottom: var(--space-lg); text-shadow: 0 2px 16px rgba(0,0,0,0.5); text-wrap: balance; overflow-wrap: break-word; }
.hero__lead { font-size: var(--fs-lead); max-width: 560px; margin-bottom: var(--space-xl); opacity: 0.97; text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.hero__actions .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-lg); margin-top: var(--space-xl); font-size: var(--fs-small); }
.hero__trust div { display: flex; align-items: center; gap: 0.5em; opacity: 0.95; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero__trust strong { font-size: 1.3rem; font-family: var(--font-display); }

/* ---------- Services ---------- */
.grid { display: grid; gap: var(--space-lg); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-xl); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.section--surface .card { background: var(--color-bg); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--color-primary) 40%, var(--color-border)); }
.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-primary) 14%, transparent); color: var(--color-primary);
  margin-bottom: var(--space-md); font-size: 1.6rem;
}
.card h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); }
.card p { color: var(--color-text-muted); }
.card__link { display: inline-flex; align-items: center; gap: 0.4em; margin-top: var(--space-md); color: var(--color-primary); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; aspect-ratio: 1; background: var(--color-surface-2);
}
.gallery__item:nth-child(1), .gallery__item:nth-child(6) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 2rem; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.45), transparent 60%); opacity: 0; transition: opacity 0.3s;
}
.gallery__item:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.quote { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-xl); }
.section--surface .quote { background: var(--color-bg); }
.quote__stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: var(--space-md); }
.quote__text { font-size: 1.1rem; margin-bottom: var(--space-lg); }
.quote__person { display: flex; align-items: center; gap: var(--space-md); }
.quote__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--color-surface-2); }
.quote__name { font-weight: 700; }
.quote__role { font-size: var(--fs-small); color: var(--color-text-muted); }

/* ---------- About / Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split h2 { font-size: var(--fs-h2); margin-bottom: var(--space-lg); }
.split p { color: var(--color-text-muted); margin-bottom: var(--space-md); }
.checklist { display: grid; gap: var(--space-sm); margin: var(--space-lg) 0; }
.checklist li { display: flex; align-items: flex-start; gap: 0.7em; font-weight: 600; color: var(--color-text); }
.checklist li::before {
  content: "✓"; flex: none; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
  background: color-mix(in srgb, var(--color-accent) 18%, transparent); color: var(--color-accent); font-size: 0.85rem; font-weight: 800; margin-top: 3px;
}
.stats { display: flex; gap: var(--space-xl); flex-wrap: wrap; }
.stats__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--color-primary); font-weight: 800; line-height: 1; }
.stats__label { font-size: var(--fs-small); color: var(--color-text-muted); }

/* ---------- Steps / Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); counter-reset: step; }
.step { position: relative; padding: var(--space-lg); }
.step__num {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; margin-bottom: var(--space-md);
  background: var(--color-primary); color: var(--color-primary-contrast); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
}
.step h3 { font-size: var(--fs-h3); margin-bottom: var(--space-xs); }
.step p { color: var(--color-text-muted); font-size: var(--fs-small); }

/* ---------- FAQ ---------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; display: grid; gap: var(--space-sm); }
.faq__item { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); overflow: hidden; }
.section--surface .faq__item { background: var(--color-bg); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: var(--space-lg);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--color-text);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-md);
}
.faq__q::after { content: "+"; font-size: 1.5rem; color: var(--color-primary); transition: transform 0.3s; }
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a p { padding: 0 var(--space-lg) var(--space-lg); color: var(--color-text-muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--color-primary); color: var(--color-primary-contrast); border-radius: var(--radius-lg); padding: var(--space-2xl); text-align: center; }
.cta-band h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.cta-band p { font-size: var(--fs-lead); opacity: 0.92; margin-bottom: var(--space-xl); }
.cta-band .btn--primary { background: #fff; color: var(--color-primary); }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.contact__info { display: grid; gap: var(--space-lg); align-content: start; }
.contact__row { display: flex; gap: var(--space-md); align-items: flex-start; }
.contact__row .ic { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-md); background: color-mix(in srgb, var(--color-primary) 12%, transparent); color: var(--color-primary); }
.form { display: grid; gap: var(--space-md); background: var(--color-surface); padding: var(--space-xl); border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.form label { font-weight: 600; font-size: var(--fs-small); display: grid; gap: 6px; }
.form input, .form textarea {
  font: inherit; padding: 0.85em 1em; border-radius: var(--radius-sm); border: 1px solid var(--color-border);
  background: var(--color-bg); color: var(--color-text); width: 100%;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--color-primary); }

/* ---------- Footer ---------- */
.footer { background: var(--color-surface-2); padding-block: var(--space-2xl) var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer h4 { font-size: 1rem; margin-bottom: var(--space-md); }
.footer a { color: var(--color-text-muted); display: block; padding: 3px 0; }
.footer a:hover { color: var(--color-primary); }
.footer__bottom { border-top: 1px solid var(--color-border); padding-top: var(--space-lg); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md); font-size: var(--fs-small); color: var(--color-text-muted); }
.placeholder-note { font-size: var(--fs-small); color: var(--color-text-muted); font-style: italic; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 60; display: none; gap: var(--space-sm);
  padding: var(--space-sm); background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--color-border);
}
.sticky-cta .btn { flex: 1; padding: 0.85em 1em; font-size: 0.95rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: var(--space-lg); background: rgba(0,0,0,0.9); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 2.2rem; color: #fff; background: none; border: 0; cursor: pointer; line-height: 1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--3, .grid--4, .steps, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .split, .contact { grid-template-columns: 1fr; gap: var(--space-xl); }
  .split__media { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(1), .gallery__item:nth-child(6) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; position: absolute; inset: 100% var(--space-lg) auto;
    background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
    padding: var(--space-lg); box-shadow: var(--shadow-lg); gap: var(--space-md);
  }
  .grid--3, .grid--4, .steps, .testimonials, .footer__grid { grid-template-columns: 1fr; }
  .stats { gap: var(--space-lg); }
  .sticky-cta { display: flex; padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

  /* Kompaktere Abstände + Schrift → stimmiger auf dem Handy */
  .container { padding-inline: var(--space-md); }
  .section { padding-block: var(--space-2xl); }
  .section--tight { padding-block: var(--space-xl); }
  .section-head { margin-bottom: var(--space-xl); }
  .brand__logo { height: 34px; }

  /* Hero mobil: passende Größen + volle Button-Breite */
  .hero { min-height: 86vh; padding-top: 5rem; }
  .hero h1 { font-size: clamp(1.9rem, 7.6vw, 2.6rem); text-shadow: 0 2px 12px rgba(0,0,0,0.55); }
  .hero__lead { font-size: 1.05rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: var(--space-sm); }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: var(--space-sm) var(--space-lg); margin-top: var(--space-lg); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* =============================================================
   AUTOGLAS FREIBURG — Custom Layer
   "Glasig-futuristische UI über echten Werkstattfotos" (50/50).
   Glas lebt in der Oberfläche, nicht in den Fotos.
   ============================================================= */

/* Sanfter Glas-Schimmer-Verlauf im Seitenhintergrund (dezent, futuristisch) */
body {
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(94, 200, 232, 0.10), transparent 60%),
    radial-gradient(900px 520px at -6% 18%, rgba(226, 35, 26, 0.08), transparent 55%),
    var(--color-bg);
  background-attachment: fixed;
}

/* ---- Glassmorphism: Karten / Panels frosted ---- */
.card,
.quote,
.faq__item,
.form,
.kasko__card,
.callback {
  background: linear-gradient(155deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--shadow-md);
}
.section--surface .card,
.section--surface .quote,
.section--surface .faq__item {
  background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
}
.card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 50%, rgba(255,255,255,0.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 50px rgba(0,0,0,0.5),
              0 0 0 1px color-mix(in srgb, var(--color-accent) 22%, transparent);
}
.card__icon {
  background: linear-gradient(150deg, color-mix(in srgb, var(--color-primary) 30%, transparent), rgba(94,200,232,0.16));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
/* Mini-CTA „→ anrufen" je Leistungskarte */
.card__link { font-size: var(--fs-small); }
.card__link:hover { gap: 0.7em; }

/* Glasige Top-Linie als futuristischer Akzent über Surface-Sektionen */
.section--surface { position: relative; }
.section--surface::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-accent) 60%, transparent), transparent);
}

/* ---- Hero: Inhalt in Glas-Panel ---- */
.hero__inner {
  background: linear-gradient(160deg, rgba(18,23,34,0.55), rgba(18,23,34,0.30));
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 24px 60px rgba(0,0,0,0.45);
}
.hero__badge { background: rgba(94,200,232,0.16); border-color: rgba(94,200,232,0.35); }

/* ---- USP / Trust-Leiste unter dem Hero ---- */
.uspbar { border-block: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-surface) 60%, transparent); }
.uspbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md);
  padding-block: var(--space-lg);
}
.uspbar__item { display: flex; align-items: center; gap: 0.7em; font-weight: 700; font-size: 0.98rem; }
.uspbar__item .ic {
  flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(150deg, color-mix(in srgb, var(--color-primary) 26%, transparent), rgba(94,200,232,0.14));
  border: 1px solid rgba(255,255,255,0.12); font-size: 1.15rem;
}
.uspbar__item small { display: block; font-weight: 500; color: var(--color-text-muted); font-size: 0.8rem; }

/* ---- 0-€-Kasko-Block (Conversion-Kern) ---- */
.kasko__card {
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, var(--space-2xl));
  display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-xl); align-items: center;
  border: 1px solid color-mix(in srgb, var(--color-primary) 35%, rgba(255,255,255,0.10));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 0 0 1px color-mix(in srgb, var(--color-primary) 18%, transparent), var(--shadow-lg);
}
.kasko__big { font-family: var(--font-display); font-weight: 800; line-height: 0.9; text-align: center; }
.kasko__big b { display: block; font-size: clamp(3rem, 8vw, 5rem); color: var(--color-primary); }
.kasko__big span { font-size: 1rem; color: var(--color-text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.kasko__body h2 { font-size: var(--fs-h2); margin-bottom: var(--space-sm); }
.kasko__body p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.kasko__body ul { display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg); }
.kasko__body li { display: flex; align-items: center; gap: 0.5em; font-weight: 600; font-size: var(--fs-small); }
.kasko__body li::before { content: "✓"; color: var(--color-accent); font-weight: 800; }
.kasko__cta { display: grid; gap: var(--space-sm); }

/* ---- WhatsApp-Button ---- */
.btn--wa { background: #25d366; color: #08331c; border-color: transparent; }
.btn--wa:hover { background: #1fbb59; color: #08331c; }
.hero__actions .btn--wa { color: #08331c; }

/* ---- Rückruf-Block (kompaktes Formular im Kontakt) ---- */
.callback { border-radius: var(--radius-lg); padding: var(--space-xl); }
.callback h3 { font-size: var(--fs-h3); margin-bottom: var(--space-xs); }
.callback p { color: var(--color-text-muted); font-size: var(--fs-small); margin-bottom: var(--space-md); }

/* ---- Galerie-Bildunterschrift ---- */
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 0.7em 0.9em;
  font-size: var(--fs-small); font-weight: 700; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
}

/* Sticky-CTA: drei Buttons auf dem Handy */
.sticky-cta .btn--wa { flex: 0 0 auto; min-width: 52px; }

@media (max-width: 980px) {
  .uspbar__grid { grid-template-columns: repeat(2, 1fr); }
  .kasko__card { grid-template-columns: 1fr; text-align: center; gap: var(--space-lg); }
  .kasko__body ul { justify-content: center; }
  .kasko__cta { justify-items: center; }
}
@media (max-width: 640px) {
  .uspbar__grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .hero__inner { padding: 1.2rem; }
}

/* =============================================================
   LIQUID-GLASS HERO (Video-Hintergrund, monochrom + Rot nur für Anruf)
   ============================================================= */

/* ---- Glas-Tiers ---- */
.liquid-glass,
.liquid-glass-strong {
  position: relative; overflow: hidden; border: none;
  border-radius: var(--lq-radius, 1rem);
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
}
.liquid-glass { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.10); }
.liquid-glass-strong { -webkit-backdrop-filter: blur(40px) saturate(1.05); backdrop-filter: blur(40px) saturate(1.05);
  box-shadow: 4px 4px 4px rgba(0,0,0,0.05), inset 0 1px 1px rgba(255,255,255,0.15); }
.liquid-glass::before,
.liquid-glass-strong::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.liquid-glass::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%, transparent 40%, transparent 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
}
.liquid-glass-strong::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.50) 0%, rgba(255,255,255,0.20) 20%, transparent 40%, transparent 60%, rgba(255,255,255,0.20) 80%, rgba(255,255,255,0.50) 100%);
}

/* ---- Inline-SVG-Icons (lucide) ---- */
.lqsvg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* ---- Kopfzeile im Hero ausblenden (gleitet nach dem Hero herein) ---- */
.header { transition: background 0.3s, box-shadow 0.3s, padding 0.3s, transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.header.is-hero-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }

/* ---- Hero-Grundgerüst ---- */
.lqhero {
  position: relative; min-height: 86vh; isolation: isolate; overflow: hidden;
  font-family: "Poppins", system-ui, sans-serif; color: #fff;
}
.lqhero__bg { position: absolute; inset: 0; z-index: -2; background: #121722 url('assets/images/poster-v1.jpg') center 35% / cover no-repeat; }
/* Video etwas weiter „rausgezoomt" zeigen: weniger Crop, Motiv mittig-oben */
.lqhero__bg video, .lqhero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.lqhero__scrim {
  position: absolute; inset: 0; z-index: -1;
  /* Heller, damit das echte Werkstatt-Video gut sichtbar bleibt (links etwas mehr für Textkontrast) */
  background: linear-gradient(95deg, rgba(10,12,16,0.50) 0%, rgba(10,12,16,0.26) 45%, rgba(10,12,16,0.08) 100%);
}
.lqhero__grid {
  display: flex; gap: clamp(0.75rem, 1.5vw, 1.4rem); min-height: 100vh;
  padding: clamp(0.75rem, 1.5vw, 1.4rem); padding-top: 5.2rem;
}

/* ---- Linkes Panel ---- */
.lqhero__left {
  --lq-radius: 1.75rem; width: 52%; display: flex; flex-direction: column;
  padding: clamp(1.5rem, 3.2vw, 3rem);
}
.lqhero__center { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: var(--space-lg); max-width: 620px; }
.lqhero__logo { height: 54px; width: auto; }
.lqhero h1 {
  font-family: "Poppins", system-ui, sans-serif; font-weight: 500; line-height: 1.04;
  letter-spacing: -0.035em; font-size: clamp(2.4rem, 5vw, 4.4rem); text-wrap: balance;
}
.lqhero h1 em { font-family: "Source Serif 4", Georgia, serif; font-style: italic; font-weight: 400; color: rgba(255,255,255,0.82); }
.lqhero__sub { font-size: clamp(1rem, 1.4vw, 1.2rem); color: rgba(255,255,255,0.80); max-width: 30em; }
.lqhero__sub b { color: #fff; font-weight: 600; }

/* CTAs */
.lqhero__cta { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }
.lqbtn {
  display: inline-flex; align-items: center; gap: 0.6em; font-weight: 600; font-size: 1.02rem;
  padding: 0.95em 1.5em; border-radius: var(--radius-pill); color: #fff; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s; --lq-radius: 999px;
}
.lqbtn:hover { transform: scale(1.05); }
.lqbtn:active { transform: scale(0.97); }
.lqbtn--call { background: var(--color-primary); box-shadow: 0 10px 30px rgba(226,35,26,0.42); }
.lqbtn--call:hover { background: var(--color-primary-strong); box-shadow: 0 16px 40px rgba(226,35,26,0.55); }
.lqbtn__ic { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.18); }

/* Pills */
.lqhero__pills { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.lqpill { --lq-radius: 999px; display: inline-flex; align-items: center; gap: 0.5em; padding: 0.5em 1em; font-size: 0.82rem; color: rgba(255,255,255,0.85); }

/* Quote/Trust unten */
.lqhero__quote { margin-top: var(--space-xl); }
.lqhero__label { display: block; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.4em; }
.lqhero__quote p { font-size: 1.05rem; color: rgba(255,255,255,0.92); }
.lqhero__quote em { font-family: "Source Serif 4", Georgia, serif; font-style: italic; color: #fff; }

/* ---- Rechtes Panel ---- */
.lqhero__right { width: 48%; display: flex; flex-direction: column; gap: var(--space-md); }
.lqhero__topbar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.lqhero__social { --lq-radius: 999px; display: inline-flex; align-items: center; gap: 0.6em; padding: 0.6em 1.1em; font-size: 0.85rem; color: rgba(255,255,255,0.88); }
.lqiconbtn { --lq-radius: 999px; display: grid; place-items: center; width: 44px; height: 44px; color: #fff; flex: none; transition: transform 0.2s var(--ease); }
.lqiconbtn:hover { transform: scale(1.08); }

.lqcard { --lq-radius: 1.4rem; padding: var(--space-lg); color: #fff; }
.lqhero__community { max-width: 18rem; }
.lqhero__community strong { display: block; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3em; }
.lqhero__community p { font-size: 0.9rem; color: rgba(255,255,255,0.72); }

.lqhero__features { --lq-radius: 2.2rem; margin-top: auto; padding: var(--space-md); display: grid; gap: var(--space-md); }
.lqfeat-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.lqfeat-row .lqcard { display: flex; flex-direction: column; gap: 0.3em; }
.lqcard__ic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.12); margin-bottom: 0.3em; }
.lqfeat-row .lqcard strong { font-size: 1rem; font-weight: 600; }
.lqfeat-row .lqcard small { font-size: 0.78rem; color: rgba(255,255,255,0.68); line-height: 1.35; }
.lqfeat-bottom { display: flex; align-items: center; gap: var(--space-md); }
.lqfeat-bottom img { width: 96px; height: 64px; object-fit: cover; border-radius: 0.9rem; flex: none; }
.lqfeat-bottom__txt { flex: 1; }
.lqfeat-bottom__txt strong { display: block; font-size: 0.98rem; font-weight: 600; }
.lqfeat-bottom__txt small { font-size: 0.78rem; color: rgba(255,255,255,0.68); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .lqhero__right { display: none; }
  .lqhero__left { width: 100%; }
  /* Großflächiger Strong-Glass über Video ist mobil GPU-lastig → Blur reduzieren */
  .liquid-glass-strong { -webkit-backdrop-filter: blur(20px) saturate(1.05); backdrop-filter: blur(20px) saturate(1.05); }
}
@media (max-width: 640px) {
  .lqhero__grid { padding: 0.6rem; padding-top: 4.6rem; }
  .lqhero__left { --lq-radius: 1.4rem; padding: 1.4rem; }
  .lqhero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .lqhero__cta { flex-direction: column; align-items: stretch; }
  .lqbtn { width: 100%; justify-content: center; }
  .lqhero__logo { height: 44px; }
}

/* =============================================================
   WOW-DIALS & DESIGN-VORSCHLÄGE
   ============================================================= */

/* ---- Foto-Leistungskarten ---- */
.card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--photo .card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card--photo .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.card--photo:hover .card__media img { transform: scale(1.06); }
.card--photo .card__body { padding: var(--space-lg) var(--space-xl) var(--space-xl); }
.card--photo h3 { margin-bottom: var(--space-sm); }

/* ---- Cursor-reaktiver Glas-Glow ---- */
[data-glow] { position: relative; }
[data-glow]::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  transition: opacity 0.3s; pointer-events: none; z-index: 3;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--color-accent) 26%, transparent), transparent 60%);
}
[data-glow]:hover::after { opacity: 1; }

/* ---- Marken-Marquee (laufendes Glasband) ---- */
.brandmarquee {
  overflow: hidden; border-block: 1px solid var(--color-border);
  background: color-mix(in srgb, var(--color-surface) 50%, transparent);
  padding-block: 0.9rem;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brandmarquee__track {
  display: inline-flex; align-items: center; gap: 1.7rem; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.01em;
  animation: marquee 28s linear infinite; will-change: transform;
}
.brandmarquee__track span { opacity: 0.82; }
.brandmarquee__track i { color: var(--color-primary); font-style: normal; font-size: 0.65em; opacity: 0.9; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Google-Badge in Bewertungen ---- */
.quote__top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); margin-bottom: var(--space-md); }
.quote__top .quote__stars { margin-bottom: 0; }
.gbadge {
  display: inline-flex; align-items: center; gap: 0.45em; flex: none;
  font-size: 0.72rem; font-weight: 600; color: var(--color-text-muted);
  border: 1px solid var(--color-border); border-radius: 999px; padding: 0.3em 0.7em; background: var(--color-bg);
}
.gbadge__g { display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: #fff; color: #4285F4; font-weight: 800; font-size: 0.72rem; font-family: var(--font-display); }

/* ---- Hero: Licht-Sweep über dem Video + wandernde Akzentlinie ---- */
.lqhero__scrim::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.12) 50%, transparent 62%);
  animation: heroSweep 9s ease-in-out infinite;
}
@keyframes heroSweep {
  0% { transform: translateX(-45%); opacity: 0; }
  25% { opacity: 1; }
  55% { transform: translateX(45%); opacity: 0; }
  100% { transform: translateX(45%); opacity: 0; }
}
.lqhero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
  background-size: 45% 100%; background-repeat: no-repeat;
  animation: heroLine 6.5s linear infinite;
}
@keyframes heroLine { from { background-position: -50% 0; } to { background-position: 150% 0; } }

/* ---- Kasko „0 €" Puls-Ring ---- */
.kasko__big b { position: relative; display: inline-block; }
.kasko__big b::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 130%; height: 130%;
  transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none;
  border: 2px solid color-mix(in srgb, var(--color-primary) 55%, transparent);
  animation: kaskoPulse 2.8s ease-out infinite;
}
@keyframes kaskoPulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.7); }
  70% { opacity: 0; transform: translate(-50%, -50%) scale(1.35); }
  100% { opacity: 0; }
}

/* ---- Ablauf: animierte Verbindungslinie ---- */
.steps { position: relative; }
.steps::before {
  content: ""; position: absolute; top: 27px; left: 9%; right: 9%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--color-border) 12%, var(--color-border) 88%, transparent);
}
.steps::after {
  content: ""; position: absolute; top: 27px; left: 9%; width: 26%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  animation: stepsDraw 4.5s ease-in-out infinite;
}
@keyframes stepsDraw { 0% { transform: translateX(-30%); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateX(330%); opacity: 0; } }
.step { position: relative; z-index: 1; }

/* ---- Anruf-Button: sanfter Puls ---- */
.lqbtn--call { position: relative; }
.lqbtn--call::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(226,35,26,0.5); animation: callPulse 2.6s ease-out infinite;
}
@keyframes callPulse {
  0% { box-shadow: 0 0 0 0 rgba(226,35,26,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(226,35,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,35,26,0); }
}

@media (max-width: 640px) {
  .steps::before, .steps::after { display: none; }
  .quote__top { flex-wrap: wrap; }
}

/* ---- Minimalistischer Hero-Block (V1): kein Glas-Panel, Inhalt schwebt über dem Video ---- */
.lqhero__left--minimal { background: none; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; justify-content: center; }
.lqhero__left--minimal .lqhero__center { gap: var(--space-lg); max-width: 560px; }
.lqhero__left--minimal .lqhero__logo { filter: drop-shadow(0 3px 12px rgba(0,0,0,0.55)); }
.lqhero__brand {
  display: inline-block; font-family: "Poppins", system-ui, sans-serif; font-weight: 600;
  font-size: clamp(1.1rem, 1.9vw, 1.55rem); letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.6); line-height: 1;
}
.lqhero__brand em {
  font-family: "Source Serif 4", Georgia, serif; font-style: italic; font-weight: 500;
  text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.82); margin: 0 0.06em;
}
.lqhero__left--minimal h1 { text-shadow: 0 2px 22px rgba(0,0,0,0.7); }
.lqhero__left--minimal .lqhero__sub { text-shadow: 0 2px 14px rgba(0,0,0,0.65); }

/* ---- Mobiler Hero V1: Video als volles 16:9-Banner statt stark gezoomtem Vollbild ---- */
@media (max-width: 640px) {
  .lqhero { min-height: auto; display: block; overflow: visible; }
  .lqhero__bg { position: relative; inset: auto; height: auto; z-index: 0; background: #121722; }
  .lqhero__bg video, .lqhero__bg img { position: relative; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
  .lqhero__scrim { display: none; }
  .lqhero::before { display: none; }
  .lqhero__grid { position: static; min-height: 0; padding: 1.4rem 1.3rem 0.4rem; }
  .lqhero__left--minimal { width: 100%; }
  .lqhero__left--minimal .lqhero__center { gap: var(--space-md); }
  .lqhero__left--minimal h1, .lqhero__left--minimal .lqhero__sub { text-shadow: none; }
  .lqhero__left--minimal .lqhero__logo { filter: none; }
}

/* ---- V1 Hero-Glas-Cards: kompakt & übersichtlich (nochmals ~25% kleiner) ---- */
@media (min-width: 1025px) {
  .lqhero__left { width: 61%; }
  .lqhero__right { width: 39%; gap: var(--space-xs); align-self: center; }
}
.lqcard { padding: var(--space-sm); --lq-radius: 0.8rem; }
.lqhero__community { max-width: 12rem; }
.lqhero__community strong { font-size: 0.85rem; margin-bottom: 0.1em; }
.lqhero__community p { font-size: 0.7rem; line-height: 1.4; }
.lqhero__features { --lq-radius: 1.05rem; padding: var(--space-xs); gap: var(--space-xs); }
.lqfeat-row { gap: var(--space-xs); }
.lqcard__ic { width: 22px; height: 22px; margin-bottom: 0.15em; }
.lqcard__ic .lqsvg { width: 13px; height: 13px; }
.lqfeat-row .lqcard strong { font-size: 0.78rem; }
.lqfeat-row .lqcard small { font-size: 0.64rem; line-height: 1.28; }
.lqfeat-bottom { gap: var(--space-xs); }
.lqfeat-bottom img { width: 54px; height: 36px; border-radius: 0.45rem; }
.lqfeat-bottom__txt strong { font-size: 0.76rem; }
.lqfeat-bottom__txt small { font-size: 0.64rem; }
.lqiconbtn { width: 30px; height: 30px; }
.lqiconbtn .lqsvg { width: 15px; height: 15px; }
.lqhero__social { font-size: 0.68rem; padding: 0.4em 0.8em; }
.lqhero__social .lqsvg { width: 14px; height: 14px; }
