/* ═══════════════════════════════════════════════════════════════════
   HOMEPAGE DESIGN 2 — Magazin-Layout
   Alle Klassen mit v2- Prefix
   ═══════════════════════════════════════════════════════════════════ */

/* ── HERO — Fullscreen ──────────────────────────────────────────── */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.v2-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.v2-hero-bg img,
.v2-hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.v2-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.6) 100%);
}
.v2-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 160px 24px 120px;
  max-width: 800px;
  margin: 0 auto;
}
.v2-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  margin-bottom: 20px;
}
.v2-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.v2-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.v2-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ── STATS BAR — Overlay ────────────────────────────────────────── */
.v2-stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -48px;
  padding: 0 24px;
}
.v2-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--navy, #1a2e4a);
  border-radius: 16px;
  padding: 32px 48px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
}
.v2-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.v2-stat-val {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: inline;
}
.v2-stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold, #c8a96e);
}
.v2-stat-lbl {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.v2-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ── SUCHFORMULAR ───────────────────────────────────────────────── */
.v2-search-section {
  padding: 64px 24px 48px;
  background: #f8f9fa;
}
.v2-search-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.v2-search-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--navy, #1a2e4a);
}
.v2-search-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.v2-search-field {
  flex: 1;
}
.v2-search-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #888;
  margin-bottom: 6px;
}
.v2-search-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: #f9f9f9;
  color: #333;
  appearance: none;
  cursor: pointer;
}
.v2-search-btn {
  flex-shrink: 0;
  padding: 12px 28px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.v2-search-btn svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2.5;
}

/* ── FEATURES — MAGAZIN ALTERNIEREND ────────────────────────────── */
.v2-features {
  padding: 100px 0;
  isolation: isolate;
}
.v2-feature-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.v2-feature-row:last-child {
  margin-bottom: 0;
}
.v2-feature-row--reverse {
  direction: rtl;
}
.v2-feature-row--reverse > * {
  direction: ltr;
}
.v2-feature-img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.v2-feature-img img {
  position: relative;
  z-index: 1;
  width: 100%; height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #f0f0f0;
  transition: transform .6s ease;
}
.v2-feature-row:hover .v2-feature-img img {
  transform: scale(1.03);
}
.v2-feature-text {
  padding: 16px 0;
}
.v2-feature-text .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  margin-bottom: 12px;
}
.v2-feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy, #1a2e4a);
  line-height: 1.25;
  margin: 0 0 16px;
}
.v2-feature-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 24px;
}
.v2-feature-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.v2-feature-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  padding: 10px 20px !important;
}
.v2-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s;
}
.v2-wa-link:hover {
  background: #1ebe57;
}

/* ── KUNDEN-ZITAT ───────────────────────────────────────────────── */
.v2-quote-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.v2-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.v2-quote-icon {
  margin-bottom: 24px;
  opacity: .6;
}
.v2-quote-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: #333;
  margin: 0 0 28px;
  border: none;
  padding: 0;
}
.v2-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-quote-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy, #1a2e4a);
}
.v2-quote-detail {
  font-size: 13px;
  color: #999;
}

/* ── MARKTREPORT BANNER ─────────────────────────────────────────── */
.v2-report-banner {
  background: linear-gradient(135deg, var(--navy, #1a2e4a), #2d4a6e);
  padding: 48px 0;
}
.v2-report-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.v2-report-eyebrow {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.v2-report-title {
  color: #fff;
  margin: 0;
  font-size: 1.4rem;
}
.v2-report-desc {
  color: rgba(255,255,255,.55);
  margin: 8px 0 0;
  font-size: .9rem;
}
.v2-report-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ── ÜBER UNS — FULLWIDTH ───────────────────────────────────────── */
.v2-about {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.v2-about-bg {
  position: absolute; inset: 0; z-index: 0;
}
.v2-about-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.v2-about-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,46,74,.85) 0%, rgba(26,46,74,.75) 100%);
}
.v2-about-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 100px 24px;
  width: 100%;
}
.v2-about-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.v2-about-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.v2-about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.v2-about-stat {
  text-align: center;
}
.v2-about-stat-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold, #c8a96e);
}
.v2-about-stat-lbl {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ── CTA — FULLWIDTH BAR ────────────────────────────────────────── */
.v2-cta {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a2e 100%);
  padding: 100px 24px;
  text-align: center;
}
.v2-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.v2-cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.v2-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .v2-stats-row {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 20px;
  }
  .v2-stat {
    flex: 1 1 40%;
    padding: 8px;
  }
  .v2-stat-divider {
    display: none;
  }
  .v2-search-row {
    flex-direction: column;
  }
  .v2-feature-row,
  .v2-feature-row--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v2-feature-row--reverse {
    direction: ltr;
  }
  .v2-feature-img img {
    height: 280px;
  }
  .v2-about-stats {
    gap: 24px;
  }
  .v2-report-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .v2-hero-content {
    padding: 120px 16px 80px;
  }
  .v2-hero-title {
    font-size: 2rem;
  }
  .v2-stats-bar {
    margin-top: -32px;
  }
  .v2-stats-row {
    border-radius: 12px;
    padding: 20px 16px;
  }
  .v2-stat-val {
    font-size: 1.5rem;
  }
  .v2-search-card {
    padding: 24px 20px;
  }
  .v2-features {
    padding: 60px 0;
  }
  .v2-feature-row {
    margin-bottom: 48px;
  }
  .v2-feature-img img {
    height: 220px;
  }
  .v2-feature-title {
    font-size: 1.3rem;
  }
  .v2-about-content {
    padding: 60px 16px;
  }
  .v2-cta {
    padding: 60px 16px;
  }
}
