/*
Theme Name: AEN-Umzugsservice & Transporte – Bento Bold
Description: WordPress-Theme für AEN-Umzugsservice im Bento-Bold-Design. Schwarz + Rot + Weiß (Logo-Farben).
Version: 1.0
Author: Digitale Hilfe KMU
Text Domain: aen
*/

:root {
  /* === FARBSCHEMA – Schwarz + Rot + Weiß (Logo-Farben) === */
  --bg:            #fafaf7;
  --bg-section:    #ffffff;
  --bg-soft:       #f3f1ea;
  --bg-dark:       #15151a;       /* Schwarz für Hero-Card, CTA, Bento-Dark */
  --bg-dark2:      #0a0a0d;       /* Footer noch tiefer */
  --accent:        #ff3131;       /* Logo-Orange/Korallenrot */
  --accent-dark:   #d92020;       /* Hover-Variante */
  --accent-soft:   rgba(255, 49, 49, 0.12);
  --accent-text:   #ffffff;
  --text:          #15151a;
  --text-muted:    #5a5a5a;
  --text-light:    #8d8d8d;
  --border:        rgba(21,21,26,0.10);
  --border-light:  rgba(21,21,26,0.06);
  --shadow-sm:     0 1px 3px rgba(21,21,26,0.06), 0 1px 2px rgba(21,21,26,0.04);
  --shadow:        0 4px 16px rgba(21,21,26,0.06), 0 2px 8px rgba(21,21,26,0.04);
  --shadow-lg:     0 16px 48px rgba(21,21,26,0.10), 0 4px 16px rgba(21,21,26,0.06);
  --shadow-xl:     0 32px 80px rgba(21,21,26,0.18), 0 8px 24px rgba(21,21,26,0.08);

  /* === TYPOGRAFIE === */
  --font-head:     'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* === RUNDUNGEN === */
  --radius-sm:     12px;
  --radius:        20px;
  --radius-lg:     28px;
  --radius-xl:     36px;
  --radius-pill:   999px;

  /* === LAYOUT === */
  --section-pad:   6rem 5vw;
  --container:     1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 500; letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--text-muted); }

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

/* === EYEBROW (Pill) === */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.section-eyebrow::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.section-title { color: var(--text); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; line-height: 1.7; }
/* Wenn ein Header text-align: center erzwingt, soll die schmalere section-sub-Box auch zentriert sein */
[class*="-header"][style*="center"] .section-sub,
.prozess-header .section-sub,
.vn-header .section-sub,
.faq-header .section-sub,
.kontakt-header .section-sub,
.bento-header .section-sub,
.wertanrechnung-header .section-sub,
.testimonials-section .section-sub,
.ueber-werte-header .section-sub { margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.btn-primary, .btn-yellow, .btn-outline, .btn-white, .btn-outline-white, .btn-whatsapp {
  font-family: var(--font-body);
  border-radius: var(--radius-pill);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--text); color: white; padding: 1rem 1.85rem;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; }

.btn-yellow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--accent); color: var(--accent-text); padding: 1rem 1.85rem;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 6px 20px rgba(255, 49, 49, 0.30);
}
.btn-yellow:hover { background: var(--accent-dark); transform: translateY(-2px); color: var(--accent-text); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--bg-section); color: var(--text); padding: 1rem 1.85rem;
  font-size: 0.95rem; font-weight: 600;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--text); color: var(--text); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: white; color: var(--text); padding: 1rem 1.85rem;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.18s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--text); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: transparent; color: white; padding: 1rem 1.85rem;
  border: 1px solid rgba(255,255,255,0.30);
  font-size: 0.95rem; font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.06); color: white; }

/* WhatsApp-Button: weiße Pill mit grünem Icon */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--bg-section); color: var(--text); padding: 1rem 1.85rem;
  font-size: 0.95rem; font-weight: 600;
  border: 1px solid var(--border);
  transition: transform 0.18s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #25D366; flex-shrink: 0; }

/* === HEADER / NAV === */
#site-header {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 200; height: 64px;
  width: calc(100% - 2rem); max-width: var(--container);
  background: rgba(15,15,20,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  display: flex; align-items: center; padding: 0 1.25rem 0 1.5rem;
  justify-content: space-between;
}
.site-logo img { height: 38px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color 0.2s, background 0.2s;
  font-weight: 500; padding: 0.5rem 0.95rem;
  display: flex; align-items: center; gap: 0.3rem;
  border-radius: var(--radius-pill);
}
.nav-menu > li > a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-menu > li > a.has-dropdown::after { content: '▾'; font-size: 0.55rem; opacity: 0.5; }
.nav-menu .nav-cta {
  background: var(--accent); color: var(--accent-text) !important; padding: 0.6rem 1.25rem;
  font-weight: 600; font-size: 0.85rem;
  transition: background 0.2s, transform 0.18s; margin-left: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.nav-menu .nav-cta:hover { background: var(--accent-dark); color: var(--accent-text) !important; transform: translateY(-1px); }

.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 12px;
  background: transparent;
  z-index: 300;
}
.nav-dropdown-inner {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 240px; padding: 0.6rem;
  list-style: none;
}
.nav-menu > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 0.6rem 0.9rem; font-size: 0.875rem;
  color: var(--text-muted); border-radius: var(--radius-sm);
  transition: all 0.15s; font-weight: 400;
}
.nav-menu.open .nav-dropdown a { color: rgba(255,255,255,0.7); }
.nav-menu.open .nav-dropdown a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-dropdown a:hover { background: var(--bg-soft); color: var(--text); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; border-radius: 50%; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* === HERO === */
.hero {
  padding: calc(64px + 5rem) 5vw 4rem;
  background: var(--bg);
  position: relative;
}
.hero-top {
  max-width: var(--container); margin: 0 auto 3rem;
  text-align: center;
}
.hero-top .hero-badge {
  margin-left: auto; margin-right: auto;
}
.hero-top .hero-title {
  margin-bottom: 0;
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-section); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 0.5rem 1.1rem; margin-bottom: 2rem;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text); width: fit-content;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft); }
  50% { box-shadow: 0 0 0 6px var(--accent-soft); }
}
.hero-title {
  color: var(--text);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin-bottom: 1.75rem;
  letter-spacing: -0.045em;
  line-height: 1;
  font-weight: 500;
}
.hero-title em {
  font-style: normal; color: var(--accent);
  font-weight: 600;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-muted); max-width: 540px;
  margin-bottom: 2.5rem; line-height: 1.6;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* Hero rechte Seite */
.hero-side {
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-contact-card {
  background: var(--bg-dark); color: white;
  padding: 2rem; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.hero-contact-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--accent); opacity: 0.18;
  border-radius: 50%; filter: blur(40px);
}
.hero-contact-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 0.5rem;
  position: relative;
}
.hero-contact-phone {
  font-family: var(--font-head); font-size: 1.85rem; font-weight: 600;
  color: white; letter-spacing: -0.03em; margin-bottom: 0.4rem;
  position: relative;
}
.hero-contact-hours { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; position: relative; }
.hero-contact-actions { display: flex; flex-direction: column; gap: 0.6rem; position: relative; }
.hero-contact-actions .btn-yellow,
.hero-contact-actions .btn-outline-white { width: 100%; justify-content: center; }
.hero-contact-actions .btn-outline-white { padding: 0.85rem 1.5rem; }

/* Trust-Strip */
.hero-trust-strip {
  max-width: var(--container); margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 0 5vw;
}
.trust-strip-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.trust-strip-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.trust-strip-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.trust-strip-item span { font-size: 0.72rem; color: var(--text-light); }

/* === BENTO GRID === */
.bento-section { padding: 6rem 5vw 4rem; background: var(--bg); }
.bento-inner { max-width: var(--container); margin: 0 auto; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.bento-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bento-card.bento-image { padding: 0; }
.bento-card.bento-image img { width: 100%; height: 100%; object-fit: cover; }
.bento-card.bento-dark { background: var(--bg-dark); color: white; }
.bento-card.bento-dark h3 { color: white; }
.bento-card.bento-dark p { color: rgba(255,255,255,0.7); }
.bento-card.bento-accent { background: var(--accent); color: var(--accent-text); }
.bento-card.bento-accent h3 { color: var(--accent-text); }
.bento-card.bento-accent p { color: var(--accent-text); opacity: 0.9; }

.bento-2x1 { grid-column: span 2; }
.bento-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-3x1 { grid-column: span 3; }
.bento-1x2 { grid-row: span 2; }

.bento-card .bento-num {
  display: block;
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 500;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.4rem;
}
.bento-card .bento-label {
  display: block;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
}
.bento-card.bento-dark .bento-label { color: rgba(255,255,255,0.65); }
.bento-card.bento-accent .bento-num,
.bento-card.bento-accent .bento-label { color: var(--accent-text); }

.bento-card h3 { margin-bottom: 0.5rem; }
.bento-card p { font-size: 0.9rem; line-height: 1.55; }

/* === LEISTUNGEN === */
.leistungen-section {
  padding: var(--section-pad);
  background: var(--bg-soft);
}
.leistungen-inner { max-width: var(--container); margin: 0 auto; }
.leistungen-header {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.75rem; margin-bottom: 3.5rem;
}
.leistungen-header h2 { max-width: 720px; }
.leistungen-header .section-sub { margin: 0; max-width: 720px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
/* Explizite Varianten: Erste Reihe 2 Spalten (Umzüge), zweite Reihe 3 Spalten */
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); margin-top: 1.25rem; }
@media (max-width: 767px) {
  .services-grid-2, .services-grid-3 { grid-template-columns: 1fr; }
  .services-grid-3 { margin-top: 1rem; }
}
.service-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  transition: background 0.25s, color 0.25s;
}
.service-card:hover .service-icon {
  background: var(--accent); color: var(--accent-text);
}
.service-card h3 { color: var(--text); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.45rem 1rem; background: var(--bg-soft);
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  /* Pill nur so breit wie nötig, und an Card-Boden gedrückt — bündig egal wie lang der Text */
  align-self: flex-start;
  margin-top: auto;
}
.service-card:hover .service-link { background: var(--accent); color: var(--accent-text); }

/* === PROZESS === */
.prozess-section { padding: var(--section-pad); background: var(--bg); }
.prozess-inner { max-width: var(--container); margin: 0 auto; }
.prozess-header { text-align: center; margin-bottom: 4rem; }
.prozess-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.prozess-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.prozess-step {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--text); color: white;
  border-radius: 50%;
  font-family: var(--font-head); font-weight: 600; font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.prozess-step:nth-child(2) .step-num { background: var(--accent); color: var(--accent-text); }
.prozess-step h3 { color: var(--text); margin-bottom: 0.6rem; }
.prozess-step p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* === VORHER / NACHHER === */
.vorher-nachher-section { padding: var(--section-pad); background: var(--bg-soft); }
.vn-inner { max-width: var(--container); margin: 0 auto; }
.vn-header { text-align: center; margin-bottom: 3.5rem; }
.vn-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.vn-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
}
.vn-slider-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.vn-slider-img-after { clip-path: inset(0 0 0 50%); transition: clip-path 0.05s; }
.vn-slider-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: white;
  transform: translateX(-50%);
  cursor: ew-resize;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.vn-slider-handle::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px;
  background: white; border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-lg);
}
.vn-slider-handle::after {
  content: '⟷';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem; color: var(--text); font-weight: 700;
  pointer-events: none;
}
.vn-label-before, .vn-label-after {
  position: absolute; top: 1.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.vn-label-before {
  left: 1.5rem;
  background: rgba(0,0,0,0.7); color: white;
  backdrop-filter: blur(8px);
}
.vn-label-after {
  right: 1.5rem;
  background: var(--accent); color: var(--accent-text);
}
.vn-hint {
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.vn-hint::before, .vn-hint::after {
  content: ''; flex: 1; max-width: 40px; height: 1px;
  background: var(--border);
}

/* === ÜBER UNS === */
.ueber-section { padding: var(--section-pad); background: var(--bg); }
.ueber-inner { max-width: var(--container); margin: 0 auto; }
.ueber-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.ueber-text h2 { margin-bottom: 1.5rem; }
.ueber-text p {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.2rem;
}
.ueber-features { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.ueber-features li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.92rem; color: var(--text); font-weight: 500;
}
.ueber-features li::before {
  content: '✓';
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}
.ueber-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.ueber-image-wrap img { width: 100%; height: auto; display: block; }
.ueber-image-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--bg-section);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.85rem;
}
.ueber-image-badge-icon {
  width: 40px; height: 40px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ueber-image-badge-text strong { display: block; font-size: 0.9rem; color: var(--text); }
.ueber-image-badge-text span { font-size: 0.75rem; color: var(--text-muted); }

/* === REGIONEN === */
/* === FAQ === */
.faq-section { padding: var(--section-pad); background: var(--bg); }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.85rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--accent); }
.faq-q {
  font-size: 1rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after {
  content: '+';
  color: var(--accent-text); background: var(--accent);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 600; flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-a {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.7; margin-top: 1rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '−'; }

/* === KONTAKT === */
.kontakt-section { padding: var(--section-pad); background: var(--bg-soft); }
.kontakt-inner { max-width: var(--container); margin: 0 auto; }
.kontakt-header { text-align: center; margin-bottom: 3.5rem; }
.kontakt-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 3rem; align-items: start;
}
.kontakt-info p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 2rem;
}
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-details li {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-section);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.contact-details li .ci {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-details li a { color: var(--text); font-weight: 500; }

/* === FORM === */
.contact-form-wrap {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
  color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-section);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-privacy { font-size: 0.75rem; color: var(--text-light); margin-top: 1rem; line-height: 1.55; }

/* === PAGE HERO === */
.page-hero {
  padding: calc(64px + 5rem) 5vw 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.page-hero-inner { max-width: var(--container); margin: 0 auto; }
.page-hero h1 {
  color: var(--text);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.045em;
  line-height: 1;
  font-weight: 500;
}
.page-hero h1 em { font-style: normal; color: var(--accent); font-weight: 600; }
.page-hero .lead {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 680px; line-height: 1.6;
}
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.78rem; color: var(--text-light);
  margin-bottom: 1.75rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }

.page-hero-actions {
  display: flex; gap: 0.85rem; margin-top: 2.25rem; flex-wrap: wrap;
}
/* === CONTENT SECTIONS === */
.content-section { padding: var(--section-pad); background: var(--bg); }
.content-section.alt { background: var(--bg-soft); }
.content-section .container { max-width: var(--container); padding: 0; margin: 0 auto; }
.content-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: start;
}
.content-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.1rem; }
.content-text h3 { color: var(--text); margin: 1.75rem 0 0.6rem; font-size: 1.15rem; }
.checklist { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--text);
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  margin-top: 1px;
}
.info-box {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.info-box h4 {
  color: var(--text); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 0.45rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.info-box h4::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.info-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* === CTA BANNER === */
.cta-banner {
  background: var(--bg-dark);
  padding: 5rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--accent); opacity: 0.18;
  border-radius: 50%; filter: blur(80px);
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--accent); opacity: 0.10;
  border-radius: 50%; filter: blur(80px);
}
.cta-banner-inner { max-width: 800px; margin: 0 auto; position: relative; }
.cta-banner h2 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.03em;
}
.cta-banner h2 em { font-style: normal; color: var(--accent); font-weight: 600; }
.cta-banner p {
  color: rgba(255,255,255,0.65); margin-bottom: 2.5rem;
  font-size: 1.05rem; line-height: 1.6;
}
.cta-banner-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
#site-footer {
  background: var(--bg-dark2);
  padding: 5rem 5vw 0;
  color: rgba(255,255,255,0.7);
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: inline-block; }
.footer-logo img { height: 44px; width: auto; display: block; }
.footer-brand-text { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 1.25rem; line-height: 1.65; max-width: 320px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem; font-weight: 600;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  padding: 1.75rem 0;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* === STICKY MOBILE CTA — Bar mit Kalkulator + Anruf === */
.sticky-mobile-bar {
  display: none;
  position: fixed; bottom: 0.85rem; left: 0.85rem; right: 0.85rem;
  gap: 0.6rem;
  z-index: 300;
}
.sticky-mobile-calc {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--accent); color: var(--accent-text);
  padding: 1rem 1.25rem;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  letter-spacing: 0.01em;
}
.sticky-mobile-calc-icon { font-size: 1.15rem; }
.sticky-mobile-call {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #15151a; color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.sticky-mobile-call:active { transform: scale(0.94); }

/* === LEGAL === */
.legal-section {
  padding: calc(64px + 6rem) 5vw 4rem;
  max-width: 880px;
  margin: 0 auto;
}
.legal-section h1 { color: var(--text); margin-bottom: 2rem; font-size: clamp(2rem, 4vw, 3rem); }
.legal-section h2 {
  color: var(--text); font-size: 1.2rem;
  font-family: var(--font-head); font-weight: 600;
  margin: 2.25rem 0 0.6rem;
}
.legal-section p, .legal-section li {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 0.75rem;
}
.legal-section ul { padding-left: 1.5rem; }
.legal-section a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }

/* === FAQ DESKTOP GRID === */
.faq-desktop-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem; margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .faq-desktop-grid { display: flex; flex-direction: column; }
}

/* === COUNTER === */
.stat-num { transition: opacity 0.3s; }

/* === STATS BAR === */
.stats-bar {
  max-width: var(--container);
  margin: 4rem auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stat-item {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === ÜBER UNS – Werte === */
.ueber-werte-section { padding: var(--section-pad); background: var(--bg-soft); }
.ueber-werte-inner { max-width: var(--container); margin: 0 auto; }
.ueber-werte-header { text-align: center; margin-bottom: 3.5rem; }
.ueber-werte-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.ueber-werte-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 4rem;
}
.werte-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.werte-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.werte-icon {
  width: 56px; height: 56px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem; font-weight: 700;
}
.werte-card h3 { color: var(--text); margin-bottom: 0.6rem; font-size: 1.4rem; }
.werte-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* === WERTANRECHNUNG === */
.wertanrechnung-section { padding: var(--section-pad); background: var(--bg); }
.wertanrechnung-inner { max-width: var(--container); margin: 0 auto; }
.wertanrechnung-header { text-align: center; margin-bottom: 3.5rem; }
.wertanrechnung-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.wertanrechnung-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.wertanrechnung-text p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem;
}
.wertanrechnung-text .checklist { margin-top: 1.75rem; }
.wertanrechnung-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.wertanrechnung-image img { width: 100%; height: auto; display: block; }

/* === REGIONEN-NOTE === */
/* === FOOTER BOTTOM === */
.footer-bottom-links { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.footer-credit { font-size: 0.72rem; opacity: 0.7; }
.footer-credit:hover { color: var(--accent) !important; opacity: 1; }

/* === RESPONSIVE TABLET === */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-side { max-width: 480px; }
  .hero-trust-strip { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: absolute;
    top: 80px; left: 0; right: 0;
    background: #15151a; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem; gap: 0.4rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-dropdown { position: static; box-shadow: none; border: none; padding-top: 0; }
  .nav-dropdown-inner { box-shadow: none; border: none; background: rgba(255,255,255,0.05); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento-2x2 { grid-column: span 2; grid-row: span 2; }
  .bento-3x1 { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .prozess-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .wertanrechnung-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ueber-werte-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; gap: 1rem; }
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 767px) {
  :root { --section-pad: 4rem 1.25rem; }
  #site-header {
    top: 0.6rem; width: calc(100% - 1.2rem);
    padding: 0 0.75rem 0 1rem;
    height: 60px;
  }
  .site-logo img { height: 32px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0;
    background: #15151a; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem; gap: 0.4rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-dropdown { position: static; box-shadow: none; border: none; padding-top: 0; }
  .nav-dropdown-inner { box-shadow: none; border: none; background: rgba(255,255,255,0.05); padding: 0.4rem; }
  .hero { padding: calc(60px + 3rem) 1.25rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-title { font-size: 2.5rem; line-height: 1; }
  .hero-actions { display: none; }
  .hero-trust-strip {
    grid-template-columns: 1fr; gap: 0.6rem; margin-top: 3rem; padding: 0 1.25rem;
  }
  .bento-section { padding: 4rem 1.25rem 3rem; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card { min-height: 200px; }
  .bento-card.bento-image { min-height: 240px; }
  .bento-2x2, .bento-3x1, .bento-2x1, .bento-1x2 {
    grid-column: span 1; grid-row: span 1;
  }
  .leistungen-header { align-items: flex-start; text-align: left; }
  .leistungen-header h2 { max-width: 100%; }
  .ueber-text { text-align: center; }
  .ueber-text .section-eyebrow { margin-left: auto; margin-right: auto; }
  .ueber-features { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .prozess-grid { grid-template-columns: 1fr; }
  .vn-slider { aspect-ratio: 4 / 5; }
  .vn-label-before, .vn-label-after { font-size: 0.66rem; padding: 0.4rem 0.85rem; top: 1rem; }
  .vn-label-before { left: 1rem; }
  .vn-label-after { right: 1rem; }
  .vn-slider-handle::before { width: 44px; height: 44px; }
  .vn-slider-handle::after { font-size: 1.2rem; }
  .ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { padding: calc(60px + 3rem) 1.25rem 3rem; }
  .page-hero h1 { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wertanrechnung-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wertanrechnung-section { padding: 4rem 1.25rem; }
  .ueber-werte-grid { grid-template-columns: 1fr; }
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 3rem auto;
    padding: 0 1.25rem;
  }
  .stat-item { padding: 1.75rem 1.25rem; }
  .stat-num { font-size: 2.5rem; }
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
  .cta-banner { padding: 4rem 1.25rem; }
}

/* === TESTIMONIALS (Fallback bei 0 Trustindex-Bewertungen, oder als Platzhalter) === */
.testimonials-section {
  padding: 5rem 5vw;
  background: var(--bg);
}
.testimonials-inner {
  max-width: var(--container); margin: 0 auto; text-align: center;
}
.testimonials-section .section-eyebrow { margin-left: auto; margin-right: auto; }
.testimonials-section .section-title { max-width: 880px; margin-left: auto; margin-right: auto; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; text-align: left;
}
.testimonial-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial-stars {
  color: var(--accent); font-size: 1rem; letter-spacing: 0.2em;
}
.testimonial-text {
  font-size: 0.95rem; color: var(--text); line-height: 1.6;
  flex-grow: 1;
}
.testimonial-author {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding-top: 1rem; border-top: 1px solid var(--border-light);
}
.testimonial-name { font-weight: 600; color: var(--text); font-size: 0.92rem; }
.testimonial-meta { font-size: 0.78rem; color: var(--text-light); }

/* === BENTO-NUM Modifier für Wörter statt Zahlen === */
.bento-card .bento-num.bento-num-word {
  font-size: 2.2rem;
  letter-spacing: -0.025em;
}

/* === Mobile/Tablet-Anpassungen für neue Sektionen === */
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-top { margin-bottom: 2rem; }
}
@media (max-width: 767px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.5rem; }
  .hero-top { margin-bottom: 1.5rem; }
}

/* ============================================================
   ÜBERSCHREIBUNGEN für 3:2-BILDER (statt 1:1 / Hochformat)
   ============================================================ */

/* === BENTO GRID: Pawlik-Style (2x2 quadratisch), Bild wird gecroppt === */
/* Für das große 2x2 Team-Foto: obere Bildhälfte priorisieren (Gesichter). 
   Für die kleine 1x1 Logo-Kachel: mittig (default), damit das Logo zentriert bleibt. */
.bento-card.bento-image img {
  object-fit: cover;
  object-position: center center;
}
.bento-2x2.bento-image img {
  object-position: center top;
}

/* === USP-SECTION: BILD QUERFORMAT statt Hochformat === */
.usp-section { padding: var(--section-pad); background: var(--bg); }
.usp-inner { max-width: var(--container); margin: 0 auto; }
.usp-header { text-align: center; margin-bottom: 3.5rem; }
.usp-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.usp-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.usp-text .checklist { margin-top: 1.75rem; }
.usp-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3 / 2;
}
.usp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .usp-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 767px) {
  .usp-grid { grid-template-columns: 1fr; gap: 2rem; }
  .usp-section { padding: 4rem 1.25rem; }
}

/* === ÜBER UNS BILD: AUCH 3:2 statt Hochformat === */
.ueber-image-wrap {
  aspect-ratio: 3 / 2;
}
.ueber-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === VERGLEICH-SECTION: zwei 3:2-Bilder nebeneinander === */
.vergleich-section { padding: var(--section-pad); background: var(--bg-soft); }
.vergleich-inner { max-width: var(--container); margin: 0 auto; }
.vergleich-header { text-align: center; margin-bottom: 3.5rem; }
.vergleich-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.vergleich-header .section-sub { margin-left: auto; margin-right: auto; }
.vergleich-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.vergleich-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2;
  transition: transform 0.25s, box-shadow 0.25s;
}
.vergleich-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.vergleich-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vergleich-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.vergleich-bad .vergleich-label {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}
.vergleich-good .vergleich-label {
  background: var(--accent);
  color: var(--accent-text);
}

@media (max-width: 767px) {
  .vergleich-grid { grid-template-columns: 1fr; gap: 1rem; }
  .vergleich-section { padding: 4rem 1.25rem; }
}

/* === FOOTER 3-SPALTIG === */
.footer-grid-3 {
  grid-template-columns: 1.6fr 1fr 1fr;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .footer-grid-3 { grid-template-columns: 1fr; }
}

/* === RESPONSIVE BENTO BEI 3:2 === */
@media (min-width: 768px) and (max-width: 1023px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-2x2 { grid-column: span 2; grid-row: span 2; }
  .bento-3x1 { grid-column: span 2; }
}
@media (max-width: 767px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card.bento-image { aspect-ratio: 3 / 2; min-height: 0; }
  .bento-2x2 { grid-column: span 1; grid-row: span 1; }
}

/* === HERO-BUTTONS: SVG-Icons konsistent in btn-yellow === */
.btn-yellow svg { width: 20px; height: 20px; flex-shrink: 0; }
/* .btn-whatsapp svg ist schon definiert weiter oben */

/* === HERO-ACTIONS: gleiche Höhe für beide Buttons === */
.hero-actions .btn-yellow,
.hero-actions .btn-whatsapp {
  line-height: 1;
}

/* ============================================================
   FORMULAR: HONEYPOT, CONSENT-CHECKBOX
   ============================================================ */
/* Honeypot: für Menschen unsichtbar, für Screenreader mit aria-hidden geblendet */
.aen-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Consent-Checkbox: klar sichtbar über dem Submit-Button */
.form-consent {
  margin: 1.5rem 0 1rem;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.consent-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent-label a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}
.consent-label a:hover {
  color: var(--accent-dark);
}

/* ============================================================
   LIGHTBOX für Vergleichsbilder (Click-to-Zoom)
   ============================================================ */
.aen-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 13, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.aen-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.aen-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}
.aen-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.aen-lightbox-close:hover {
  background: rgba(255,255,255,0.22);
}

/* ============================================================
   HERO-KALKULATOR-BUTTON (nur Desktop — auf Mobile hat der
   Sticky-Bar unten den Kalkulator schon)
   ============================================================ */
.btn-calc-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(255, 49, 49, 0.28);
}
.btn-calc-hero .btn-calc-arrow {
  margin-left: 0.35rem;
  font-size: 1.2em;
  transition: transform 0.2s;
}
.btn-calc-hero:hover .btn-calc-arrow {
  transform: translateX(4px);
}

/* Auf Mobile ausblenden — Sticky-Bar unten übernimmt */
@media (max-width: 767px) {
  .hero-actions-calc { display: none; }
}
