/* ============================================================
   S&A Solutions — V2 Design-Entwurf (eigenständig)
   Layout-Sprache: helle Seite, große abgerundete Karten,
   Forest-Green-Gradient-Karten. Farben = S&A Design-Tokens.
   ============================================================ */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Marcellus-400.woff2') format('woff2');
}
@font-face {
  font-family: 'GeneralSans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/GeneralSans-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'GeneralSans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/GeneralSans-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'GeneralSans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/GeneralSans-Semibold.otf') format('opentype');
}

/* ---------- Tokens ---------- */
:root {
  --forest: #15241b;
  --forest-accent: #2e3f34;
  --creme: #faf3e3;
  --warm-beige: #f6f3ee;
  --soft-gray: #eef0ef;
  --green-tint: #e4ebe6;
  --text-primary: #151515;
  --text-body: #484341;
  --text-muted: #b8b7b7;
  --card-radius: 1.75rem;          /* 28px */
  --card-radius-lg: 2rem;          /* 32px */
  --shadow-soft: 0 18px 50px rgba(21, 36, 27, 0.08);
  --shadow-card: 0 10px 34px rgba(21, 36, 27, 0.07);
  --shadow-hover: 0 24px 60px rgba(21, 36, 27, 0.13);
  --grad-forest: linear-gradient(160deg, #15241b 0%, #2e3f34 100%);
  --container: 75rem;              /* 1200px */
  --font-heading: 'Marcellus', Georgia, serif;
  --font-body: 'GeneralSans', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.v2 {
  margin: 0;
  overflow-x: clip;
  background: var(--warm-beige);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
.v2 img { max-width: 100%; display: block; }
.v2 h1, .v2 h2, .v2 h3, .v2 h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
  text-wrap: balance;
}
.v2 h1 { font-size: 3.75rem; line-height: 1.08; letter-spacing: -0.08125rem; }
.v2 h2 { font-size: 2.5rem; line-height: 1.15; letter-spacing: -0.01rem; }
.v2 h3 { font-size: 1.5rem; line-height: 1.2; }
.v2 p { margin: 0; }
.v2 a { color: inherit; }

.v2-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.v2-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  color: var(--forest-accent);
  margin-bottom: 1rem;
}
.v2-eyebrow.on-dark { color: rgba(250, 243, 227, 0.75); }

/* ---------- Scroll-Reveal ---------- */
.v2-reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(7px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.v2-reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.v2-reveal.d1 { transition-delay: 0.09s; }
.v2-reveal.d2 { transition-delay: 0.18s; }
.v2-reveal.d3 { transition-delay: 0.27s; }
.v2-reveal.d4 { transition-delay: 0.36s; }

/* Auto-Stagger: direkte Kinder eines Grids/Rows nacheinander einblenden */
.v2-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2-stagger.is-visible > * { opacity: 1; transform: translateY(0); filter: blur(0); }
.v2-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.v2-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; }
.v2-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
.v2-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.v2-stagger.is-visible > *:nth-child(5) { transition-delay: 0.34s; }
.v2-stagger.is-visible > *:nth-child(6) { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
  .v2-reveal, .v2-stagger > * { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

/* ---------- Buttons / Pills ---------- */
.v2 .v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Glanz-Sweep beim Hover */
.v2 .v2-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2 .v2-btn:hover::before { transform: translateX(120%); }
.v2 .v2-btn:hover { transform: translateY(-2px); }
.v2 .v2-btn:active { transform: translateY(0) scale(0.98); }
.v2 .v2-btn-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2 .v2-btn:hover .v2-btn-arrow { transform: translateX(4px); }
.v2 .v2-btn-light {
  background: var(--creme);
  color: var(--forest);
}
.v2 .v2-btn-light:hover { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28); }
.v2 .v2-btn-ghost-light {
  background: rgba(250, 243, 227, 0.14);
  color: #fff;
  border-color: rgba(250, 243, 227, 0.55);
}
.v2 .v2-btn-ghost-light:hover { background: rgba(250, 243, 227, 0.24); }
.v2 .v2-btn-dark {
  background: var(--forest);
  color: var(--creme);
}
.v2 .v2-btn-dark:hover { background: var(--forest-accent); box-shadow: 0 12px 30px rgba(21, 36, 27, 0.28); }
.v2 .v2-btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: rgba(21, 36, 27, 0.35);
}
.v2 .v2-btn-outline:hover { background: var(--forest); color: var(--creme); }

/* ---------- Navbar ---------- */
.v2-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 1.25rem;
  transition: padding 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
/* Beim Scrollen rückt die Pille bündig an die obere Kante (kein Streifen mit Durchscheinen) */
.v2-nav-wrap.is-stuck {
  padding-top: 0;
  padding-bottom: 0.5rem;
}
.v2-nav {
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem 0.65rem 1.5rem;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
/* Beim Scrollen wird die Pille kräftiger und wirft mehr Schatten */
.v2-nav-wrap.is-stuck .v2-nav {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(21, 36, 27, 0.16);
}
.v2-nav-logo img { height: 32px; width: auto; }
.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.v2-nav-links a:not(.v2-nav-cta) {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.2s ease;
  position: relative;
}
.v2-nav-links a:not(.v2-nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--forest-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2-nav-links a:not(.v2-nav-cta):hover { color: var(--forest-accent); }
.v2-nav-links a:not(.v2-nav-cta):hover::after { transform: scaleX(1); transform-origin: left center; }
.v2-nav-links a[aria-current="page"] { color: var(--forest-accent); }
.v2-nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.v2-mobile-menu a[aria-current="page"] { color: var(--forest-accent); font-weight: 600; }
.v2-nav-cta { margin-left: 0.5rem; padding: 0.75rem 1.5rem; }
.v2-burger {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.v2-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.v2-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-burger.open span:nth-child(2) { opacity: 0; }
.v2-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v2-mobile-menu {
  display: none;
  max-width: var(--container);
  margin: 0.5rem auto 0;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.v2-mobile-menu.open { display: flex; }
.v2-mobile-menu a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid var(--soft-gray);
}
.v2-mobile-menu a:last-child { border-bottom: 0; }

/* ---------- Hero ---------- */
/* --expand (0 -> 1) wird beim Scrollen per JS gesetzt: die Karte wächst randlos */
.v2-hero-section {
  --expand: 0;
  padding: 1.25rem 1.25rem 0;
  padding-left: calc(1.25rem * (1 - var(--expand)));
  padding-right: calc(1.25rem * (1 - var(--expand)));
}
.v2-hero {
  width: calc(75rem + (100% - 75rem) * var(--expand, 0));
  max-width: 100%;
  margin: 0 auto;
  background: var(--grad-forest);
  border-radius: calc(var(--card-radius-lg) * (1 - var(--expand, 0)));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 4.5rem 1.5rem 0;
  will-change: width, border-radius;
}
.v2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 243, 227, 0.1);
  border: 1px solid rgba(250, 243, 227, 0.28);
  color: var(--creme);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-bottom: 1.75rem;
}
.v2-hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ec5a5;
}
.v2-hero h1 {
  color: var(--creme);
  max-width: 46rem;
  margin: 0 auto 1.25rem;
}
.v2-hero .v2-hero-desc {
  color: rgba(250, 243, 227, 0.82);
  max-width: 38rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  text-wrap: pretty;
}
.v2-hero-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}
.v2-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.v2-hero-stat { text-align: center; }
.v2-hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--creme);
  line-height: 1.1;
}
.v2-hero-stat-label {
  font-size: 0.78rem;
  color: rgba(250, 243, 227, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 0.3rem;
}
.v2-hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(250, 243, 227, 0.22);
}
.v2-hero-image-wrap {
  position: relative;
  max-width: 62rem;
  margin: 0 auto;
}
.v2-hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -6rem 0 auto;
  height: 6rem;
  pointer-events: none;
}
.v2-hero-image-wrap img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.3);
}

/* ---------- Hero-Entrance (spielt beim Laden) ---------- */
@keyframes v2HeroIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(9px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes v2HeroImgIn {
  from { opacity: 0; transform: scale(1.14) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.v2-hero-item {
  opacity: 0;
  animation: v2HeroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.v2-hero-item.hi1 { animation-delay: 0.10s; }
.v2-hero-item.hi2 { animation-delay: 0.22s; }
.v2-hero-item.hi3 { animation-delay: 0.34s; }
.v2-hero-item.hi4 { animation-delay: 0.46s; }
.v2-hero-item.hi5 { animation-delay: 0.58s; }
.v2-hero-img {
  opacity: 0;
  animation: v2HeroImgIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.62s forwards;
  transform-origin: center bottom;
}
/* dezenter Glanz-Sweep über das Hero-Bild, einmalig */
.v2-hero-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.16) 50%, transparent 100%);
  transform: translateX(-160%) skewX(-14deg);
  border-radius: inherit;
  pointer-events: none;
  animation: v2HeroShine 1.4s ease-out 1.5s 1;
}
@keyframes v2HeroShine {
  to { transform: translateX(320%) skewX(-14deg); }
}
@media (prefers-reduced-motion: reduce) {
  .v2-hero-item, .v2-hero-img { animation: none; opacity: 1; transform: none; }
  .v2-hero-img::after { display: none; }
}

/* ---------- Prosa / Fließtext (Rechtstexte, Blog-Artikel, Textsektionen) ---------- */
.v2-prose { max-width: 46rem; margin: 0 auto; color: var(--text-body); }
.v2-prose > *:first-child { margin-top: 0; }
.v2-prose p { margin: 0 0 1.15rem; line-height: 1.7; }
.v2-prose h2 { font-size: 1.9rem; margin: 2.5rem 0 1rem; }
.v2-prose h3 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.v2-prose h4 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
.v2-prose ul, .v2-prose ol { margin: 0 0 1.15rem; padding-left: 1.35rem; }
.v2-prose li { margin-bottom: 0.5rem; line-height: 1.65; }
.v2-prose a { color: var(--forest-accent); text-decoration: underline; text-underline-offset: 2px; }
.v2-prose img { border-radius: var(--card-radius); margin: 1.5rem 0; }
.v2-prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--forest-accent);
  background: var(--soft-gray);
  border-radius: 0 0.75rem 0.75rem 0;
  font-style: italic;
}
.v2-prose iframe { max-width: 100%; border-radius: var(--card-radius); margin: 1.5rem 0; }

/* ---------- Unterseiten-Header (kompakter Hero, keine Ausweit-Animation) ---------- */
.v2-subhero-section { padding: 1.25rem 1.25rem 0; }
.v2-subhero {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--grad-forest);
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.v2-subhero .v2-hero-badge { margin-bottom: 1.5rem; }
.v2-subhero h1 { color: var(--creme); max-width: 42rem; margin: 0 auto 1.25rem; }
.v2-subhero .v2-hero-desc {
  color: rgba(250, 243, 227, 0.82);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.05rem;
  text-wrap: pretty;
}
@media (max-width: 767px) {
  .v2-subhero { padding: 3.5rem 1.25rem; border-radius: var(--card-radius); }
}
.v2-subhero-crumbs { margin-top: 1.4rem; font-size: 0.85rem; color: rgba(250, 243, 227, 0.65); }
.v2-subhero-crumbs a { color: #c7b98a; text-decoration: none; }
.v2-subhero-crumbs a:hover { text-decoration: underline; }

/* ---------- Trust-Zeile ---------- */
.v2-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.75rem;
  padding: 2.25rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}
.v2-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
}
.v2-trust svg { color: var(--forest-accent); flex-shrink: 0; }

/* ---------- Sektionen ---------- */
.v2-section { padding: 4.5rem 0; }
.v2-section-head { max-width: 44rem; margin: 0 auto 3rem; text-align: center; }
.v2-section-head.left { margin: 0 0 2.5rem; text-align: left; }
.v2-section-head h2 { margin-bottom: 1rem; }

/* ---------- Kennzahlen ---------- */
.v2-numbers-card {
  background: #fff;
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.v2-numbers-copy h2 { margin: 0 0 1.25rem; }
.v2-numbers-copy p { margin-bottom: 1.75rem; }
.v2-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.v2-number-tile {
  background: var(--soft-gray);
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.v2-number-tile:hover { transform: translateY(-4px); background: var(--green-tint); }
.v2-number-tile .num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--forest);
  line-height: 1.1;
}
.v2-number-tile .lbl {
  font-size: 0.8rem;
  color: var(--text-body);
  margin-top: 0.35rem;
}
.v2-number-tile.wide { grid-column: 1 / -1; background: var(--green-tint); }

/* ---------- Leistungen (Pastell-Cards 2er-Grid) ---------- */
.v2-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.v2-service-card {
  border-radius: var(--card-radius);
  padding: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.v2-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.v2-service-visual {
  border-radius: 1.25rem;
  min-height: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.v2-service-visual.tint-gray { background: var(--soft-gray); }
.v2-service-visual.tint-green { background: var(--green-tint); }
.v2-service-visual.tint-beige { background: var(--warm-beige); }
.v2-service-visual.tint-creme { background: var(--creme); }
.v2-service-visual img { width: 64px; height: 64px; object-fit: contain; }
.v2-service-visual .ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(21, 36, 27, 0.08);
}
.v2-service-visual .ring.r2 { width: 260px; height: 260px; }
.v2-service-body { padding: 0 0.75rem 0.75rem; }
.v2-service-body h3 { margin-bottom: 0.6rem; }
.v2-service-body p { font-size: 0.95rem; }

/* ---------- CTA-Banner (Gradient) ---------- */
.v2-cta-band {
  background: var(--grad-forest);
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v2-cta-band::after {
  content: '';
  position: absolute;
  inset: auto -20% -70% -20%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(250, 243, 227, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.v2-cta-band h2 { color: var(--creme); max-width: 38rem; margin: 0 auto 1rem; }
.v2-cta-band p {
  color: rgba(250, 243, 227, 0.8);
  max-width: 34rem;
  margin: 0 auto 2rem;
}
.v2-cta-band .v2-hero-ctas { margin-bottom: 0; position: relative; z-index: 1; }

/* ---------- Prozess: Bild links, Feature-Liste rechts ---------- */
.v2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.v2-split-media {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--soft-gray);
}
.v2-split-media img { width: 100%; height: 100%; object-fit: cover; }
.v2-split-media img[data-parallax], .v2-about-media img[data-parallax] { will-change: transform; }
.v2-split-content h2 { margin-bottom: 1rem; }
.v2-split-content > p { margin-bottom: 2rem; }
.v2-feature-list { display: flex; flex-direction: column; gap: 1.4rem; }
.v2-feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.v2-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}
.v2-feature-item:hover .v2-feature-icon { background: var(--creme); }
.v2-feature-icon img { width: 24px; height: 24px; }
.v2-feature-item h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.v2-feature-item p { font-size: 0.92rem; }

/* ---------- Über uns (dunkle Karte) ---------- */
.v2-about-card {
  background: var(--grad-forest);
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
.v2-about-media { min-height: 24rem; }
.v2-about-media img { width: 100%; height: 100%; object-fit: cover; }
.v2-about-content {
  padding: 3.5rem 3.5rem 3.5rem 4.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.v2-about-content h2 { color: var(--creme); margin-bottom: 1.1rem; }
.v2-about-content p { color: rgba(250, 243, 227, 0.82); margin-bottom: 2rem; }

/* ---------- Team ---------- */
.v2-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.v2-team-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.v2-team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.v2-team-photo {
  height: 20rem;
  overflow: hidden;
  background: var(--green-tint);
}
.v2-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}
.v2-team-card:hover .v2-team-photo img { transform: scale(1.04); }
.v2-team-body { padding: 1.75rem 1.75rem 2rem; display: flex; flex-direction: column; flex: 1; }
.v2-team-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-weight: 600;
  color: var(--forest-accent);
  margin: 0.35rem 0 0.8rem;
}
.v2-team-body > p { font-size: 0.93rem; margin-bottom: 1.2rem; }
.v2-team-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.v2-team-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-body);
}
.v2-team-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest-accent);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.v2-team-body .v2-btn { margin-top: auto; align-self: flex-start; }
.v2-quote {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.v2-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1.4;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

/* ---------- Kundenstimmen ---------- */
.v2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
/* 5 Karten: obere Reihe 3, untere Reihe 2 zentriert */
.v2-testimonial-card { grid-column: span 2; }
.v2-testimonial-card:nth-child(4) { grid-column: 2 / span 2; }
.v2-testimonial-card:nth-child(5) { grid-column: 4 / span 2; }
.v2-testimonial-card {
  background: var(--soft-gray);
  border-radius: var(--card-radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v2-testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.v2-testimonial-card.alt { background: var(--green-tint); }
.v2-testimonial-card.dark { background: var(--grad-forest); }
.v2-testimonial-card.dark p, .v2-testimonial-card.dark .t-name { color: var(--creme); }
.v2-testimonial-card.dark .t-role { color: rgba(250, 243, 227, 0.65); }
.v2-testimonial-card p { font-size: 0.93rem; flex: 1; }
.v2-testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.v2-testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.t-name { font-weight: 600; font-size: 0.92rem; color: var(--text-primary); }
.t-role { font-size: 0.78rem; color: var(--text-body); }

/* ---------- Angebote / Pricing ---------- */
.v2-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.v2-pricing-card {
  border-radius: var(--card-radius);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v2-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.v2-pricing-card.light {
  background: #fff;
  border: 1px solid rgba(21, 36, 27, 0.12);
  box-shadow: var(--shadow-card);
}
.v2-pricing-card.filled {
  background: var(--grad-forest);
  box-shadow: var(--shadow-soft);
}
.v2-pricing-card.filled h3, .v2-pricing-card.filled .v2-price { color: var(--creme); }
.v2-pricing-card.filled .v2-price-sub, .v2-pricing-card.filled > p { color: rgba(250, 243, 227, 0.78); }
.v2-pricing-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-bottom: 1rem;
  color: var(--forest-accent);
}
.v2-pricing-card.filled .v2-pricing-tag { color: rgba(250, 243, 227, 0.7); }
.v2-pricing-card h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.v2-price { font-family: var(--font-heading); font-size: 2rem; color: var(--text-primary); }
.v2-price-sub { font-size: 0.85rem; color: var(--text-body); margin-bottom: 1.25rem; }
.v2-pricing-card > p { font-size: 0.93rem; margin-bottom: 1.5rem; }
.v2-checklist {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.v2-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.v2-pricing-card.filled .v2-checklist li { color: rgba(250, 243, 227, 0.88); }
.v2-check {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--green-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.v2-pricing-card.filled .v2-check { background: rgba(250, 243, 227, 0.15); }
.v2-check svg { width: 10px; height: 10px; color: var(--forest); }
.v2-pricing-card.filled .v2-check svg { color: var(--creme); }
.v2-pricing-card .v2-btn { margin-top: auto; }

/* ---------- Blog ---------- */
.v2-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.v2-blog-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v2-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.v2-blog-visual {
  height: 11rem;
  background: var(--grad-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.v2-blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(250, 243, 227, 0.14);
  border: 1px solid rgba(250, 243, 227, 0.3);
  color: var(--creme);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.v2-blog-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.v2-blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.v2-blog-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.v2-blog-body p { font-size: 0.88rem; margin-bottom: 1.1rem; flex: 1; }
.v2-blog-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.v2-blog-card:hover .v2-blog-link { text-decoration: underline; }
.v2-blog-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- FAQ ---------- */
.v2-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.v2-faq-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.v2-faq-card:hover { box-shadow: var(--shadow-hover); }
.v2-faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
}
.v2-faq-card summary::-webkit-details-marker { display: none; }
.v2-faq-card summary h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0;
}
.v2-faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--green-tint);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.v2-faq-icon::before, .v2-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--forest);
  transform: translate(-50%, -50%);
}
.v2-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.3s ease; }
.v2-faq-card[open] .v2-faq-icon { background: var(--forest); transform: rotate(45deg); }
.v2-faq-card[open] .v2-faq-icon::before, .v2-faq-card[open] .v2-faq-icon::after { background: var(--creme); }
.v2-faq-card p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.92rem;
}
.v2-faq-card p a { color: var(--forest-accent); }

/* ---------- Kontakt ---------- */
.v2-contact-card {
  background: #fff;
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
}
.v2-contact-form-col { padding: 3.25rem 3rem; }
.v2-contact-form-col h2 { margin-bottom: 0.85rem; }
.v2-contact-form-col > p { margin-bottom: 1.5rem; }
.v2-contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.83rem;
  color: var(--text-body);
}
.v2-contact-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.v2-contact-trust svg { color: var(--forest-accent); }
.v2-form { display: flex; flex-direction: column; gap: 0.9rem; }
.v2-input {
  width: 100%;
  border: 1px solid rgba(21, 36, 27, 0.18);
  border-radius: 0.9rem;
  background: var(--warm-beige);
  padding: 0.95rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.v2-input:focus {
  outline: none;
  border-color: var(--forest-accent);
  background: #fff;
}
.v2-input::placeholder { color: #9a938f; }
textarea.v2-input { min-height: 8rem; resize: vertical; }
.v2-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--text-body);
  cursor: pointer;
  margin: 0.25rem 0;
}
.v2-consent input { margin-top: 0.25rem; flex-shrink: 0; cursor: pointer; accent-color: var(--forest); }
.v2-consent a { color: var(--forest-accent); }
.v2-form-note { font-size: 0.78rem; color: var(--text-muted); }
.v2-form .v2-btn { align-self: flex-start; margin-top: 0.5rem; }
.v2-form-success, .v2-form-error {
  display: none;
  border-radius: 0.9rem;
  padding: 1rem 1.25rem;
  font-size: 0.93rem;
  margin-top: 1rem;
}
.v2-form-success { background: var(--green-tint); color: var(--forest); }
.v2-form-error { background: #f7e6e0; color: #7a3b2a; }
.v2-contact-media {
  position: relative;
  min-height: 26rem;
  background: var(--green-tint);
}
.v2-contact-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.v2-contact-media-overlay {
  position: absolute;
  inset: auto 1.5rem 1.5rem;
  background: rgba(21, 36, 27, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1.25rem;
  padding: 1.25rem 1.4rem;
  color: var(--creme);
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.v2-footer-section { padding: 4.5rem 1.25rem 1.5rem; }
.v2-footer {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--grad-forest);
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 3.5rem 3rem 2rem;
  color: var(--creme);
}
.v2-footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 0.8fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 243, 227, 0.15);
}
.v2-footer-brand img { height: 34px; width: auto; margin-bottom: 1.5rem; filter: brightness(0) invert(0.96) sepia(0.08); }
.v2-footer-brand h2 { color: var(--creme); font-size: 1.75rem; margin-bottom: 0.75rem; }
.v2-footer-brand p { color: rgba(250, 243, 227, 0.75); font-size: 0.93rem; max-width: 24rem; margin-bottom: 1.25rem; }
.v2-footer-start {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 243, 227, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: color 0.2s ease;
}
.v2-footer-start:hover { color: var(--creme); }
.v2-footer-start .arr { animation: v2-arrow 2s ease-in-out infinite; display: inline-block; }
@keyframes v2-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}
.v2-footer-social { display: flex; align-items: center; gap: 0.9rem; }
.v2-footer-social .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-weight: 600;
  color: rgba(250, 243, 227, 0.6);
}
.v2-footer-social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(250, 243, 227, 0.1);
  border: 1px solid rgba(250, 243, 227, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.v2-footer-social a:hover { background: rgba(250, 243, 227, 0.22); transform: translateY(-2px); }
.v2-footer-social img { width: 18px; height: 18px; margin: 0; }
.v2-footer-col .head {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-weight: 600;
  color: rgba(250, 243, 227, 0.55);
  margin-bottom: 1.1rem;
}
.v2-footer-col a, .v2-footer-col .item {
  display: block;
  color: rgba(250, 243, 227, 0.85);
  text-decoration: none;
  font-size: 0.93rem;
  padding: 0.3rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.v2-footer-col a:hover { color: #fff; transform: translateX(3px); }
.v2-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(250, 243, 227, 0.5);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .v2 h1 { font-size: 2.75rem; }
  .v2 h2 { font-size: 2rem; }
  .v2-nav-links { display: none; }
  .v2-burger { display: flex; }
  .v2-numbers-card { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
  .v2-split { grid-template-columns: 1fr; }
  .v2-about-card { grid-template-columns: 1fr; }
  .v2-about-media { min-height: 18rem; max-height: 22rem; }
  .v2-testimonial-grid { grid-template-columns: 1fr 1fr; }
  .v2-testimonial-grid .v2-testimonial-card,
  .v2-testimonial-grid .v2-testimonial-card:nth-child(4),
  .v2-testimonial-grid .v2-testimonial-card:nth-child(5) { grid-column: auto; }
  .v2-blog-grid { grid-template-columns: 1fr; max-width: 32rem; margin: 0 auto; }
  .v2-contact-card { grid-template-columns: 1fr; }
  .v2-contact-media { min-height: 20rem; }
  .v2-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .v2-section { padding: 3.25rem 0; }
  .v2 .v2-btn { white-space: normal; text-align: center; max-width: 100%; }
  .v2-hero { padding-top: 3.5rem; }
  .v2-hero-stat-divider { display: none; }
  .v2-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 0.5rem;
  }
  .v2-hero-stat-number { font-size: 1.5rem; }
  .v2-hero-stat-label { font-size: 0.68rem; letter-spacing: 0.06rem; }
  .v2-hero-image-wrap img { height: 15rem; }
  .v2-services-grid { grid-template-columns: 1fr; }
  .v2-team-grid { grid-template-columns: 1fr; }
  .v2-testimonial-grid { grid-template-columns: 1fr; }
  .v2-pricing-grid { grid-template-columns: 1fr; }
  .v2-faq-grid { grid-template-columns: 1fr; }
  .v2-contact-form-col { padding: 2.25rem 1.5rem; }
  .v2-footer { padding: 2.5rem 1.75rem 1.5rem; }
}

@media (max-width: 479px) {
  .v2 h1 { font-size: 2.15rem; letter-spacing: -0.03rem; }
  .v2 h2 { font-size: 1.65rem; }
  .v2-hero-ctas .v2-btn { width: 100%; }
  .v2-hero-badge { font-size: 0.62rem; }
  .v2-numbers-grid { grid-template-columns: 1fr; }
  .v2-footer-main { grid-template-columns: 1fr; }
  .v2-quote blockquote { font-size: 1.35rem; }
  .v2-nav { padding-left: 1rem; }
  .v2-nav-cta { display: none; }
}

/* ---------- Blog-Artikel (V2 Re-Skin) ---------- */
.v2-article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  color: rgba(250, 243, 227, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.02rem;
}
.v2-article-meta span { display: inline-flex; align-items: center; }
.v2-article-meta .author { color: var(--creme); font-weight: 600; }
/* Zwei-Spalten-Artikel-Layout: Prosa links, klebrige TOC rechts */
.v2-article-layout { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 3rem; align-items: start; }
.v2-article-content { min-width: 0; }
.v2-article-toc { position: sticky; top: 6rem; align-self: start; background: var(--soft-gray); border-radius: var(--card-radius); padding: 1.5rem; }
.v2-article-toc .toc-title { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-primary); margin-bottom: 1rem; }
.v2-article-toc ol, .v2-article-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; counter-reset: toc; }
.v2-article-toc a { color: var(--text-body); text-decoration: none; display: block; padding-left: 0.85rem; border-left: 2px solid rgba(21,36,27,0.12); font-size: 0.9rem; line-height: 1.4; transition: color .2s ease, border-color .2s ease; }
.v2-article-toc a:hover { color: var(--forest-accent); border-left-color: var(--forest-accent); }
.v2-article-toc li.active > a { color: var(--forest-accent); border-left-color: var(--forest-accent); font-weight: 600; }
@media (max-width: 991px) { .v2-article-layout { grid-template-columns: 1fr; gap: 1.75rem; } .v2-article-toc { position: static; order: -1; } }
.v2-article-note {
  max-width: 46rem;
  margin: 2.75rem auto 0;
  background: var(--creme);
  border: 1px solid rgba(21, 36, 27, 0.14);
  border-radius: var(--card-radius);
  padding: 1.75rem 2rem;
}
.v2-article-note h3 {
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  color: var(--forest);
}
.v2-article-note p { margin: 0; line-height: 1.65; color: var(--text-body); }
.v2-article-note a { color: var(--forest-accent); font-weight: 700; }
.v2-article-cta-wrap { max-width: 46rem; margin: 2.5rem auto 0; }
@media (max-width: 479px) {
  .v2-article-note { padding: 1.5rem 1.35rem; }
}
