:root {
  --green: #8fc043;
  --green-dark: #6e9d28;
  --blue: #1563ad;
  --blue-dark: #0a3357;
  --blue-deep: #061f36;
  --ink: #172a3a;
  --muted: #64717b;
  --surface: #ffffff;
  --surface-green: #f4f9eb;
  --line: rgba(21, 99, 173, .14);
  --shadow: 0 18px 45px rgba(8, 31, 54, .10);
  --radius: 22px;
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,51,87,.08);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 auto; }
.brand img { width: 158px; height: auto; }
.mainnav { display: flex; align-items: center; justify-content: center; gap: 22px; flex: 1; }
.mainnav a { text-decoration: none; font-weight: 700; font-size: 14px; }
.nav-link, .nav-item > a { padding-block: 29px; }
.nav-item { position: relative; display: flex; align-items: center; gap: 4px; }
.submenu-toggle { border: 0; background: transparent; color: var(--blue); cursor: pointer; font-size: 15px; padding: 8px 0; }
.submenu {
  display: none;
  position: absolute;
  top: calc(100% - 10px);
  left: -16px;
  min-width: 250px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,51,87,.08);
}
.submenu-right { left: auto; right: -10px; }
.submenu a { display: block; padding: 10px 12px; border-radius: 9px; font-weight: 600; }
.submenu a:hover { background: var(--surface-green); color: var(--blue-dark); }
.nav-has-submenu:hover .submenu, .nav-has-submenu:focus-within .submenu, .nav-has-submenu.open .submenu { display: block; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #10220b; }
.button-primary:hover { background: #9ed34a; }
.button-secondary { background: var(--blue); color: #fff; }
.header-cta { margin-left: auto; min-height: 46px; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 28px; height: 2px; background: var(--blue-dark); margin: 6px auto; }

.hero { min-height: 680px; position: relative; display: grid; align-items: center; overflow: hidden; background: var(--blue-dark); }
.hero-image { position: absolute; inset: -3%; width: 106%; height: 106%; object-fit: cover; object-position: 68% 68%; animation: heroDrift 18s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.075) translate3d(-1.2%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; transform: none; }
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,24,42,.92) 0%, rgba(3,24,42,.75) 38%, rgba(3,24,42,.18) 68%, rgba(3,24,42,0) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding-block: 90px; }
.hero-content h1 { margin: 10px 0 18px; max-width: 620px; font-size: clamp(48px, 6vw, 82px); line-height: .98; letter-spacing: -0.045em; }
.hero-lead { font-size: clamp(18px, 2vw, 24px); max-width: 650px; margin: 0 0 30px; }
.eyebrow { margin: 0 0 8px; color: var(--green-dark); font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow-light { color: #d8f3af; }

.regional-strip { background: var(--green); color: #0c2a18; }
.regional-strip-inner { min-height: 92px; display: flex; justify-content: center; align-items: center; text-align: center; }
.regional-strip strong { display: block; font-size: clamp(21px, 3vw, 31px); line-height: 1.15; }
.regional-strip span { display: block; font-size: 16px; margin-top: 5px; }


.section { padding: 92px 0; }
.section-heading { max-width: 820px; margin-bottom: 40px; }
.centered { text-align: center; margin-inline: auto; }
.section-heading h2, .split-section h2, .sun-copy h2, .faq-heading h2, .final-cta h2, .craft-content h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }
.section-solutions { background: linear-gradient(180deg, #fff 0%, #f7fbff 100%); }
.solution-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.solution-card { background: #fff; border: 1px solid rgba(21,99,173,.09); box-shadow: 0 12px 30px rgba(6,31,54,.07); overflow: hidden; border-radius: 18px; display: flex; flex-direction: column; }
.solution-card img { width: 100%; aspect-ratio: 4/3.25; object-fit: contain; object-position: center; background: #f7f9fb; }
.solution-copy { padding: 20px 18px 22px; display: flex; flex-direction: column; flex: 1; }
.solution-copy h3 { margin: 0 0 8px; font-size: 21px; }
.solution-copy p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }
.solution-copy a { margin-top: auto; color: var(--blue); font-weight: 800; font-size: 14px; text-decoration: none; }

.craft-image-section { position: relative; min-height: 590px; display: grid; align-items: center; overflow: hidden; }
.craft-image-section > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.craft-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,31,51,.90) 0%, rgba(5,31,51,.70) 48%, rgba(5,31,51,.18) 76%, rgba(5,31,51,.02) 100%); }
.craft-content { position: relative; color: #fff; z-index: 2; padding-block: 80px; }
.craft-content h2 { max-width: 680px; font-size: clamp(42px, 5vw, 70px); }
.craft-content p:not(.eyebrow) { max-width: 660px; font-size: 19px; margin: 22px 0 28px; }

.process-section { background: var(--blue); color: #fff; }
.process-heading .eyebrow { color: #cde9a6; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { padding: 26px 22px; border: 1px solid rgba(255,255,255,.24); border-radius: 18px; background: rgba(5,49,88,.30); }
.process-grid span { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 50%; background: var(--green); color: #10220b; font-weight: 900; }
.process-grid h3 { margin: 18px 0 8px; font-size: 21px; }
.process-grid p { margin: 0; color: rgba(255,255,255,.82); }

.split-section { background: #fff; }
.split-grid { display: grid; grid-template-columns: .9fr 1.35fr .8fr; gap: 24px; align-items: stretch; }
.why-card, .reviews-card { padding: 34px; border-radius: var(--radius); background: var(--surface-green); }
.check-list { list-style: none; padding: 0; margin: 24px 0; }
.check-list li { margin: 10px 0; padding-left: 26px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 900; }
.text-link { color: var(--blue); font-weight: 900; text-decoration: none; }
.feature-image { margin: 0; overflow: hidden; border-radius: var(--radius); background: #f5f5f5; }
.feature-image img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; }
.feature-image-person { display: flex; flex-direction: column; }
.feature-image-person img { min-height: 0; height: 360px; object-fit: contain; background: #fff; padding: 18px; }
.feature-image figcaption { font-size: 13px; line-height: 1.55; color: var(--muted); padding: 14px 16px 16px; background: rgba(255,255,255,.96); }
.feature-image figcaption strong { color: var(--ink); }
.stars { color: var(--green-dark); letter-spacing: .12em; font-size: 28px; }
.reviews-card h3 { margin: 8px 0; font-size: 24px; }
.review-placeholder { color: var(--muted); }

.region-section { padding-top: 0; }
.compact { margin-bottom: 28px; }
.region-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.region-grid > * { min-height: 68px; border: 1px solid var(--line); border-radius: 12px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 12px; font-weight: 800; text-decoration: none; background: #fff; }
.region-grid > *::before { content: "•"; color: var(--green); margin-right: 8px; font-size: 22px; }
.region-grid a { color: var(--blue); }

.sun-section { width: min(calc(100% - 40px), var(--shell)); margin: 0 auto 92px; display: grid; grid-template-columns: .92fr 1.08fr; min-height: 460px; background: var(--blue-dark); color: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.sun-media { min-height: 460px; max-height: 520px; overflow: hidden; background: #f6f7f8; }
.sun-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.sun-copy { padding: clamp(42px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.sun-copy .eyebrow { color: #cde9a6; }
.sun-copy p:not(.eyebrow) { color: rgba(255,255,255,.84); font-size: 19px; max-width: 590px; }
.sun-copy .button { align-self: flex-start; margin-top: 12px; }

.faq-section { background: var(--surface-green); }
.faq-shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; }
.faq-heading { align-self: start; position: sticky; top: 120px; padding: 30px; border-left: 8px solid var(--green); background: #fff; border-radius: 0 18px 18px 0; }
.faq-list details { background: #fff; border: 1px solid rgba(21,99,173,.08); border-radius: 14px; padding: 18px 20px; margin-bottom: 12px; }
.faq-list summary { cursor: pointer; font-weight: 850; font-size: 18px; }
.faq-list p { color: var(--muted); margin-bottom: 0; }

.final-cta { padding: 58px 0; background: linear-gradient(115deg, var(--blue), #0d416f); color: #fff; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta h2 { font-size: clamp(30px, 4vw, 48px); }
.button-light { box-shadow: 0 10px 25px rgba(0,0,0,.12); }

.site-footer { background: var(--blue-deep); color: #dceaf5; padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .8fr 1fr; gap: 46px; padding-bottom: 50px; }
.footer-brand img { width: 175px; filter: drop-shadow(0 3px 8px rgba(0,0,0,.18)); }
.footer-brand p { max-width: 280px; }
.footer-brand address { font-style: normal; color: #afc3d3; }
.site-footer h3 { color: #fff; margin-top: 0; }
.site-footer a, .footer-cookie { display: block; color: #c3d4e0; text-decoration: none; margin: 8px 0; font: inherit; border: 0; background: none; padding: 0; cursor: pointer; text-align: left; }
.site-footer a:hover, .footer-cookie:hover { color: #fff; }
.neher-block { margin-top: 26px; }
.neher-block span { display: block; font-size: 13px; color: #9bb1c1; margin-bottom: 8px; }
.neher-block img { width: 115px; border-radius: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0 28px; display: flex; justify-content: space-between; gap: 24px; align-items: center; font-size: 14px; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a, .footer-bottom button { margin: 0; }

@media (max-width: 1120px) {
  .header-inner { min-height: 72px; }
  .brand img { width: 145px; }
  .menu-toggle { display: block; }
  .header-cta { margin-left: 0; }
  .mainnav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 20px 26px;
    box-shadow: 0 18px 35px rgba(6,31,54,.15);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .mainnav.open { display: flex; }
  .nav-item { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .nav-link, .nav-item > a { padding: 13px 0; }
  .submenu-toggle { padding: 12px; }
  .submenu, .submenu-right { position: static; grid-column: 1 / -1; box-shadow: none; border: 0; border-left: 3px solid var(--green); border-radius: 0; padding: 0 0 6px 14px; }
  .nav-has-submenu:hover .submenu { display: none; }
  .nav-has-submenu.open .submenu { display: block; }
  .solution-grid { grid-template-columns: repeat(3, 1fr); }
  .split-grid { grid-template-columns: 1fr 1fr; }
  .reviews-card { grid-column: 1 / -1; }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-cta { display: none; }
  .hero { min-height: 650px; }
  .hero-image { object-position: 69% 72%; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,24,42,.93), rgba(3,24,42,.72) 64%, rgba(3,24,42,.35)); }
  .hero-content { padding-block: 70px; align-self: end; }
  .hero-content h1 { font-size: clamp(46px, 15vw, 68px); }
  .regional-strip-inner { justify-content: flex-start; min-height: 112px; }
  .section { padding: 68px 0; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card img { aspect-ratio: 4/3; object-fit: contain; }
  .craft-image-section { min-height: 640px; }
  .craft-image-section > img { object-position: 62% center; }
  .craft-shade { background: linear-gradient(90deg, rgba(5,31,51,.95), rgba(5,31,51,.72) 70%, rgba(5,31,51,.38)); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .reviews-card { grid-column: auto; }
  .feature-image img { min-height: 330px; }
  .region-grid { grid-template-columns: 1fr 1fr; }
  .sun-section { width: min(calc(100% - 28px), var(--shell)); margin-bottom: 68px; grid-template-columns: 1fr; }
  .sun-media { min-height: 360px; max-height: 420px; }
  .sun-copy { padding: 58px 24px 68px; }
  .faq-shell { grid-template-columns: 1fr; gap: 24px; }
  .faq-heading { position: static; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .header-inner { gap: 12px; }
  .brand img { width: 130px; }
  .hero { min-height: 600px; }
  .hero-content h1 { font-size: 47px; }
  .hero-lead { font-size: 17px; }
  .regional-strip strong { font-size: 22px; }
  .solution-grid, .process-grid, .region-grid, .footer-grid { grid-template-columns: 1fr; }
  .solution-card img { aspect-ratio: 16/10; }
  .section-heading h2, .split-section h2, .sun-copy h2, .faq-heading h2, .final-cta h2, .craft-content h2 { font-size: 34px; }
  .craft-content h2 { font-size: 43px; }
  .craft-content p:not(.eyebrow) { font-size: 17px; }
  .sun-media { min-height: 300px; max-height: 340px; }
}

.region-grid > *:last-child::before { content: none; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.site-footer .social-links a { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; margin: 0; }
.site-footer .social-links a:hover { border-color: var(--green); color: #fff; }


/* =========================
   V3 - abgestimmte Änderungen
   ========================= */

.eyebrow-normal {
  text-transform: none;
  letter-spacing: .025em;
}

.hero-image {
  object-position: center center;
}

.hero-brand-animation {
  position: absolute;
  z-index: 3;
  left: 61%;
  top: 28%;
  width: 300px;
  height: 210px;
  pointer-events: none;
}

.hero-mosquito {
  position: absolute;
  width: 78px;
  left: -110px;
  top: 18px;
  opacity: 0;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,.25));
  animation: mosquitoFly 3.2s ease-in-out 1.1s both;
}

.hero-logo-stamp {
  position: absolute;
  width: 245px;
  left: 28px;
  top: 32px;
  opacity: 0;
  transform: rotate(-4deg) scale(1.7);
  transform-origin: center;
  filter: drop-shadow(0 9px 18px rgba(0,0,0,.28));
  animation: logoStamp 5.9s cubic-bezier(.2,.8,.25,1) 3.75s both;
}

@keyframes mosquitoFly {
  0%   { opacity: 0; transform: translate3d(-40px,-5px,0) rotate(-12deg) scale(.78); }
  12%  { opacity: 1; }
  36%  { transform: translate3d(90px,70px,0) rotate(8deg) scale(.92); }
  62%  { transform: translate3d(170px,12px,0) rotate(-6deg) scale(.86); }
  86%  { opacity: 1; transform: translate3d(205px,72px,0) rotate(6deg) scale(.72); }
  100% { opacity: 0; transform: translate3d(205px,72px,0) rotate(6deg) scale(.54); }
}

@keyframes logoStamp {
  0%, 5% { opacity: 0; transform: rotate(-4deg) scale(1.55); }
  15% { opacity: 1; transform: rotate(-4deg) scale(.93); }
  22% { transform: rotate(-4deg) scale(1.03); }
  28%, 82% { opacity: .96; transform: rotate(-4deg) scale(1); }
  100% { opacity: 0; transform: rotate(-4deg) scale(.98); }
}

.regional-strip-inner {
  justify-content: center;
  text-align: center;
}

.section-solutions {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
}

.solution-card {
  background: #f3f8ea;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.solution-card img {
  background: #fff;
}

@media (hover:hover) and (pointer:fine) {
  .solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(6,31,54,.13);
    border-color: rgba(143,192,67,.42);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 26px;
  align-items: stretch;
}

.feature-image-person img {
  height: 360px;
  object-fit: contain;
  background: #fff;
  padding: 18px;
}

.reviews-section {
  margin-top: 34px;
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.reviews-head h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--surface-green);
  border: 1px solid rgba(143,192,67,.16);
  border-radius: 18px;
  padding: 24px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.review-meta span {
  color: #e8a80e;
  letter-spacing: .06em;
  white-space: nowrap;
}

.review-card p {
  margin: 0 0 16px;
  color: #425261;
}

.review-card small {
  color: #73808b;
}

.region-grid > div:last-child {
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
}

.region-grid > div:last-child strong {
  color: var(--blue);
}

.region-grid > div:last-child span {
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
}

.sun-section {
  grid-template-columns: .9fr 1.1fr;
  min-height: 350px;
  margin-bottom: 72px;
}

.sun-media {
  min-height: 350px;
  max-height: 390px;
}

.sun-media img {
  object-fit: cover;
  object-position: center;
}

.sun-copy {
  padding: clamp(34px, 4vw, 54px);
}

.sun-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.final-cta {
  padding: 50px 0;
}

.final-cta .eyebrow-normal {
  font-size: 15px;
  font-weight: 800;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #10220b;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(6,31,54,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 1120px) {
  .hero-brand-animation {
    left: 58%;
    width: 260px;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .hero-brand-animation {
    display: none;
  }
  .about-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .sun-section {
    min-height: 0;
  }
  .sun-media {
    min-height: 280px;
    max-height: 330px;
  }
}

@media (max-width: 520px) {
  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mosquito,
  .hero-logo-stamp {
    display: none;
    animation: none;
  }
  .solution-card,
  .scroll-top {
    transition: none;
  }
}


/* V4 adjustments */
.hero-logo-stamp,
.hero-mosquito {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.sun-media img {
  object-position: center 46%;
}

.footer-brand .social-links a,
.site-footer .social-links a {
  text-decoration: none;
}


/* =========================
   V5
   ========================= */

/* Hero: mehr vom Paar sichtbar, ohne die Szene unnötig zu vergrößern */
.hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 67% 76%;
  animation: heroDriftV5 18s ease-in-out infinite alternate;
  transform-origin: 67% 76%;
}

@keyframes heroDriftV5 {
  from { transform: scale(1.005) translate3d(0,0,0); }
  to   { transform: scale(1.028) translate3d(-.35%, -.2%, 0); }
}

/* Die freigestellte Mücke des Nutzers vollständig zeigen */
.hero-mosquito {
  width: 88px;
  height: auto;
  object-fit: contain;
  left: -102px;
  top: 12px;
}

/* Logo-Stempel bewusst gerade ausgerichtet */
.hero-logo-stamp {
  transform: rotate(0deg) scale(1.7);
}

@keyframes logoStamp {
  0%, 5% { opacity: 0; transform: rotate(0deg) scale(1.55); }
  15% { opacity: 1; transform: rotate(0deg) scale(.93); }
  22% { transform: rotate(0deg) scale(1.03); }
  28%, 82% { opacity: .96; transform: rotate(0deg) scale(1); }
  100% { opacity: 0; transform: rotate(0deg) scale(.98); }
}

.footer-brand address a {
  display: inline;
  margin: 0;
}

@media (max-width: 780px) {
  .hero-image {
    object-position: 70% 78%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
    transform: none;
  }
}


/* =========================
   V6
   ========================= */

/* Header-Logo mit mehr Luft */
.site-header .shell {
  padding-left: clamp(22px, 3.2vw, 52px);
  padding-right: clamp(22px, 3.2vw, 52px);
}

.site-logo {
  padding-block: 10px;
}

.site-logo img {
  max-height: 58px;
  width: auto;
}

/* Desktop-Hero: Fenster wieder etwas stärker zeigen, Personen aber im Bild halten */
@media (min-width: 781px) {
  .hero-image {
    object-position: 64% 67%;
    transform-origin: 64% 67%;
  }
}

/* Einsatzgebiet: vier gleichwertige Ortskarten */
.region-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.region-surroundings {
  margin: 18px 0 0;
  text-align: center;
  color: var(--ink);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
}

/* Mobile: eigene kompakte Animation, Desktop bleibt unverändert */
@media (max-width: 780px) and (prefers-reduced-motion: no-preference) {
  .hero-brand-animation {
    display: block;
    left: auto;
    right: 14px;
    top: 18px;
    width: 155px;
    height: 115px;
    z-index: 4;
  }

  .hero-mosquito {
    width: 48px;
    left: 4px;
    top: 13px;
    animation: mosquitoFlyMobile 1.6s ease-in-out .65s both;
  }

  .hero-logo-stamp {
    width: 128px;
    left: 23px;
    top: 24px;
    animation: logoStampMobile 3s cubic-bezier(.2,.8,.25,1) 1.8s both;
  }

  @keyframes mosquitoFlyMobile {
    0%   { opacity: 0; transform: translate3d(-16px,10px,0) rotate(-10deg) scale(.82); }
    15%  { opacity: 1; }
    65%  { opacity: 1; transform: translate3d(48px,22px,0) rotate(4deg) scale(.78); }
    100% { opacity: 0; transform: translate3d(67px,28px,0) rotate(3deg) scale(.62); }
  }

  @keyframes logoStampMobile {
    0%, 8% { opacity: 0; transform: scale(1.3); }
    22%    { opacity: .96; transform: scale(.94); }
    30%    { transform: scale(1.02); }
    38%, 78% { opacity: .96; transform: scale(1); }
    100%   { opacity: 0; transform: scale(.98); }
  }

  .hero-image {
    object-position: 68% 70%;
  }
}

@media (max-width: 700px) {
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .region-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand-animation {
    right: 7px;
    top: 12px;
    transform: scale(.9);
    transform-origin: top right;
  }
}


/* =========================
   V7 Feinjustierungen
   ========================= */

/* Header: Logo deutlich luftiger platzieren */
.site-header {
  padding-block: 10px;
}

.site-header .shell {
  min-height: 92px;
  align-items: center;
}

.site-logo {
  padding: 12px 0;
  margin-left: 8px;
}

.site-logo img {
  display: block;
  max-height: 66px;
  width: auto;
}

/* Einsatzgebiet: Hinweis nicht als fünfte Karte, sondern mittig darunter */
.region-surroundings {
  display: block;
  width: 100%;
  margin: 22px auto 0;
  text-align: center;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.45;
}

.region-surroundings strong {
  font-weight: 800;
}

/* Sonderlösungen: neues Aufmaß-Motiv als Hintergrund */
.special-section,
.special-solutions,
.special-solutions-section {
  background-image:
    linear-gradient(90deg, rgba(9, 34, 57, .88) 0%, rgba(9, 34, 57, .72) 42%, rgba(9, 34, 57, .34) 100%),
    url("../img/special-solutions-measurement.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Zusatz direkt unter "So einfach geht's" */
.steps-intro-note {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
  font-weight: 500;
}

/* Falls der Einleitungsblock hell ist, Text dunkel halten */
.steps-section:not(.section-blue) .steps-intro-note,
.process-section:not(.section-blue) .steps-intro-note {
  color: var(--ink);
}

@media (max-width: 780px) {
  .site-header {
    padding-block: 8px;
  }

  .site-header .shell {
    min-height: 78px;
  }

  .site-logo {
    margin-left: 2px;
    padding: 10px 0;
  }

  .site-logo img {
    max-height: 58px;
  }

  .region-surroundings {
    margin-top: 16px;
    padding-inline: 12px;
  }
}


/* =========================
   V8 Feinjustierungen
   ========================= */

/* Sonderlösungen: Überschrift kompakter, damit sie auf Desktop und Mobile ruhiger bricht */
.craft-content h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  text-wrap: balance;
}

/* Prozess: lange Dachzeile bewusst lesbar, nicht in Versalien */
.process-eyebrow {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
  letter-spacing: .02em;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.45;
}

/* Einsatzgebiet: Überschrift kleiner und ausgewogener */
.region-section .section-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  text-wrap: balance;
}

/* Vier Ortskarten, Zusatz mittig darunter */
.region-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.region-surroundings {
  display: block;
  width: 100%;
  margin: 20px auto 0;
  padding: 0 16px;
  text-align: center !important;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
  font-weight: 800;
}

/* Regionaler grüner Balken: mobil mehr Luft oberhalb und insgesamt bessere Vertikalabstände */
@media (max-width: 780px) {
  .regional-strip {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .regional-strip-inner {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .regional-strip-inner strong {
    line-height: 1.18;
  }

  .craft-content h2 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.06;
  }

  .region-section .section-heading h2 {
    font-size: clamp(31px, 8.5vw, 42px);
    line-height: 1.08;
  }

  .process-eyebrow {
    padding-inline: 10px;
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 430px) {
  .region-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================
   V9 Feinjustierungen
   ========================= */

/* Sonderlösungen: Aufmaß-Motiv auf Desktop weiter nach unten setzen,
   damit das Maßband nicht am oberen Bildrand klebt. */
@media (min-width: 781px) {
  .craft-image-section > img {
    object-position: center 32%;
  }
}

/* Sonnen-/Sichtschutz */
.sun-headline span {
  display: inline;
}

@media (max-width: 780px) {
  .sun-copy h2.sun-headline {
    font-size: clamp(29px, 8.4vw, 38px);
    line-height: 1.08;
    margin-bottom: 22px;
  }

  .sun-headline span {
    display: block;
  }

  .sun-headline br {
    display: none;
  }

  .sun-copy {
    padding: 46px 24px 56px;
  }
}

/* Grüner Regionalbalken: mobil etwas kompakter und mit mehr Innenabstand */
@media (max-width: 780px) {
  .regional-strip-inner {
    justify-content: center;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .regional-strip strong {
    font-size: clamp(20px, 5.7vw, 25px);
    line-height: 1.16;
  }

  .regional-strip span {
    max-width: 92%;
    margin: 9px auto 0;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.45;
  }
}

/* Footer: Neher + Qualitätssiegel */
.neher-block {
  margin-top: 26px;
}

.neher-block > span {
  display: block;
  font-size: 13px;
  color: #9bb1c1;
  margin-bottom: 10px;
}

.partner-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.neher-block .partner-badges img {
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.neher-block .neher-badge {
  height: 112px;
}

.neher-block .quality-badge {
  height: 112px;
  max-width: 86px;
  background: #fff;
}

.neher-copy {
  margin: 16px 0 0;
  max-width: 310px;
  color: #b9cbd8;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 520px) {
  .partner-badges {
    gap: 12px;
  }

  .neher-block .neher-badge,
  .neher-block .quality-badge {
    height: 96px;
  }

  .neher-block .quality-badge {
    max-width: 74px;
  }

  .neher-copy {
    max-width: 100%;
  }
}


/* =========================
   V10: Mobile Sonnen-/Sichtschutzkarte
   ========================= */
@media (max-width: 780px) {
  .sun-section {
    position: relative;
    display: block;
    min-height: 660px;
    overflow: hidden;
    background: var(--blue-dark);
  }

  .sun-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    max-height: none;
    z-index: 0;
    background: var(--blue-dark);
  }

  .sun-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 43% center;
  }

  .sun-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(8,31,54,.78) 0%, rgba(8,31,54,.68) 48%, rgba(8,31,54,.82) 100%),
      linear-gradient(0deg, rgba(8,31,54,.88) 0%, rgba(8,31,54,.25) 48%, rgba(8,31,54,.52) 100%);
  }

  .sun-copy {
    position: relative;
    z-index: 2;
    min-height: 660px;
    padding: 48px 28px 44px;
    justify-content: center;
    text-shadow: 0 1px 12px rgba(0,0,0,.18);
  }

  .sun-copy h2.sun-headline {
    font-size: clamp(30px, 9.2vw, 42px);
    line-height: 1.08;
    margin-bottom: 24px;
    max-width: none;
  }

  .sun-headline span {
    display: block;
    white-space: nowrap;
  }

  .sun-copy p:not(.eyebrow) {
    max-width: 31rem;
    font-size: 17px;
    line-height: 1.55;
  }

  .sun-copy .button {
    text-shadow: none;
  }
}

@media (max-width: 380px) {
  .sun-copy h2.sun-headline {
    font-size: 29px;
  }
}


/* V12 - finale mobile Korrekturen vor Kundenfreigabe */
@media (max-width: 520px) {
  /* Hero kompakter, damit der regionale Leistungsbalken ohne Scrollen sichtbar wird */
  .hero { min-height: 500px; }
  .hero-content { padding-block: 48px; }

  /* Zusatz zum Einsatzgebiet auf kleinen Displays bewusst einzeilig */
  .region-surroundings {
    white-space: nowrap;
    font-size: 14px;
    padding-inline: 0;
    letter-spacing: -0.015em;
  }
}

/* =========================
   V13 - ausschließlich drei mobile Präsentationskorrekturen
   Desktop bleibt unverändert.
   ========================= */
@media (max-width: 780px) {
  /* 1) Hero-Hintergrund mobil etwas heller, Nachtstimmung bleibt erhalten */
  .hero-overlay {
    background: linear-gradient(90deg,
      rgba(3,24,42,.78) 0%,
      rgba(3,24,42,.60) 58%,
      rgba(3,24,42,.30) 100%);
  }

  /* 2) Sonnen-/Sichtschutz mobil heller und klarer erkennbar */
  .sun-section::after {
    background:
      linear-gradient(90deg, rgba(8,31,54,.58) 0%, rgba(8,31,54,.45) 48%, rgba(8,31,54,.62) 100%),
      linear-gradient(0deg, rgba(8,31,54,.66) 0%, rgba(8,31,54,.12) 48%, rgba(8,31,54,.34) 100%);
  }
}

/* 3) Mobile Mückenflugbahn deutlich verlängert: links oben -> rechts oben */
@media (max-width: 780px) and (prefers-reduced-motion: no-preference) {
  .hero-brand-animation {
    left: 0;
    right: 0;
    top: 14px;
    width: 100%;
    height: 125px;
    transform: none;
    z-index: 4;
  }

  .hero-mosquito {
    width: 48px;
    left: 18px;
    top: 10px;
    animation: mosquitoFlyMobileV13 2.7s ease-in-out .65s both;
  }

  .hero-logo-stamp {
    width: 128px;
    left: auto;
    right: 12px;
    top: 24px;
    animation: logoStampMobile 3s cubic-bezier(.2,.8,.25,1) 3.05s both;
  }

  @keyframes mosquitoFlyMobileV13 {
    0%   { opacity: 0; transform: translate3d(-12px,8px,0) rotate(-10deg) scale(.82); }
    10%  { opacity: 1; }
    30%  { opacity: 1; transform: translate3d(24vw,25px,0) rotate(5deg) scale(.86); }
    55%  { opacity: 1; transform: translate3d(47vw,8px,0) rotate(-5deg) scale(.80); }
    82%  { opacity: 1; transform: translate3d(67vw,28px,0) rotate(4deg) scale(.72); }
    100% { opacity: 0; transform: translate3d(calc(100vw - 102px),30px,0) rotate(3deg) scale(.58); }
  }
}


/* =========================
   V15 - Google-Review-Teaser + kompakte Orts-Pins
   ========================= */
.hero-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 24px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
}
.hero-reviews-link > span:nth-child(2) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-reviews-link:hover > span:nth-child(2),
.hero-reviews-link:focus-visible > span:nth-child(2) {
  text-decoration-thickness: 2px;
}
.hero-review-stars {
  color: #f5b323;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.hero-review-arrow {
  font-size: 18px;
  line-height: 1;
}

/* Alte Punkt-Pseudoelemente vollständig ersetzen */
.region-grid > *::before,
.region-grid > *:last-child::before {
  content: none !important;
  display: none !important;
}
.region-grid > div {
  gap: 10px;
}
.location-pin {
  width: 18px !important;
  height: 22px !important;
  flex: 0 0 18px;
  fill: var(--green) !important;
  color: var(--green);
  display: block;
}
.location-pin path { fill: currentColor; }
.region-grid > div span {
  display: inline-block;
}

#bewertungen {
  scroll-margin-top: 110px;
}

@media (max-width: 780px) {
  .hero-reviews-link {
    display: flex;
    width: max-content;
    max-width: none;
    margin-top: 22px;
    gap: 5px;
    font-size: 12px;
    white-space: nowrap;
  }
  .hero-review-stars {
    letter-spacing: .5px;
  }
  .hero-review-arrow {
    font-size: 15px;
  }
  .location-pin {
    width: 17px !important;
    height: 21px !important;
    flex-basis: 17px;
  }
}

@media (max-width: 380px) {
  .hero-reviews-link {
    font-size: 11px;
    gap: 4px;
  }
}


/* =========================================================
   SPANNRAHMEN MASTER-UNTERSEITE
   Basis: freigegebene Startseite V17
   ========================================================= */
.subpage-hero{padding:52px 0 78px;background:#fff}
.subpage-hero-grid{display:grid;grid-template-columns:.92fr 1.08fr;align-items:stretch;background:var(--cream);border-radius:28px;overflow:hidden}
.subpage-hero-copy{padding:64px 58px;align-self:center}
.subpage-hero-copy h1{margin:0 0 24px;font-size:clamp(3rem,5.2vw,5.35rem);line-height:.98;letter-spacing:-.045em}
.subpage-hero-copy p{max-width:640px}
.subpage-hero-copy .hero-lead{font-size:1.25rem;line-height:1.55;color:var(--navy)}
.subpage-hero-copy .button{margin-top:18px}
.subpage-hero-media{margin:0;min-height:570px;overflow:hidden}
.subpage-hero-media img{width:100%;height:100%;object-fit:cover;object-position:center}
.section-intro{max-width:900px;margin-bottom:44px}
.section-intro-center{text-align:center;margin-left:auto;margin-right:auto}
.section-intro h2,.content-copy h2{margin:.15em 0 .35em;font-size:clamp(2.3rem,4vw,4.4rem);line-height:1.02;letter-spacing:-.035em}
.section-intro p{font-size:1.12rem;color:var(--text-muted)}
.content-split{display:grid;grid-template-columns:1fr 1fr;gap:54px;align-items:center}
.content-split-reverse{grid-template-columns:1fr 1fr}
.content-copy .lead-copy{font-size:1.25rem;line-height:1.55;color:var(--navy)}
.content-copy p:not(.lead-copy){color:var(--text-muted)}
.content-image{margin:0;border-radius:24px;overflow:hidden;min-height:430px}
.content-image img{width:100%;height:100%;min-height:430px;object-fit:cover}
.section-soft{background:var(--cream)}
.advantage-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.advantage-card{background:#fff;border:1px solid var(--border);border-radius:22px;padding:30px;transition:transform .25s ease,box-shadow .25s ease}
.advantage-card:hover{transform:translateY(-5px);box-shadow:0 16px 34px rgba(16,44,69,.08)}
.advantage-number{display:grid;place-items:center;width:52px;height:52px;border-radius:50%;background:var(--green);font-weight:900;font-size:1.2rem;color:var(--navy);margin-bottom:22px}
.advantage-card h3,.feature-card h3{font-size:1.35rem;margin:0 0 10px}
.advantage-card p,.feature-card p{color:var(--text-muted)}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.feature-card{padding:30px;border-radius:22px;background:var(--cream);border:1px solid #e3ead8}
.text-link{font-weight:800;color:var(--blue);text-decoration:none}
.product-focus{background:var(--navy);color:#fff}
.product-focus .eyebrow{color:var(--lime)}
.product-focus .content-copy p{color:#e8edf1}
.process-section{background:var(--blue);color:#fff}
.process-section .eyebrow{color:var(--lime)}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.process-card{border:1px solid rgba(255,255,255,.28);border-radius:22px;padding:28px;background:rgba(15,55,98,.15)}
.process-card>span{display:grid;place-items:center;width:54px;height:54px;border-radius:50%;background:var(--green);color:var(--navy);font-size:1.25rem;font-weight:900;margin-bottom:22px}
.process-card h3{font-size:1.35rem;margin:0 0 8px}
.process-card p{color:#f2f5f8}
.region-section{text-align:center}
.location-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.location-card{min-height:110px;border:1px solid var(--border);border-radius:18px;display:flex;align-items:center;justify-content:center;gap:12px;background:#fff}
.location-card .pin{color:var(--green);font-size:1.3rem}
.location-card strong{font-size:1.1rem}
.location-more{margin:28px 0 0;font-weight:900;font-size:1.2rem}
.faq-section{background:var(--cream)}
.faq-layout{display:grid;grid-template-columns:.72fr 1.28fr;gap:56px;align-items:start}
.faq-heading{background:#fff;border-left:8px solid var(--green);border-radius:0 24px 24px 0;padding:42px}
.faq-heading h2{font-size:clamp(2.5rem,4vw,4rem);line-height:1.03;margin:0}
.faq-list details{background:#fff;border:1px solid var(--border);border-radius:18px;padding:0 24px;margin-bottom:14px}
.faq-list summary{cursor:pointer;font-weight:700;font-size:1.08rem;padding:22px 0}
.faq-list p{color:var(--text-muted);margin:0;padding:0 0 22px}
.final-cta{background:var(--blue);color:#fff;padding:66px 0}
.final-cta-inner{display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center}
.final-cta .eyebrow{color:var(--lime)}
.final-cta h2{font-size:clamp(2.5rem,4vw,4.2rem);line-height:1.03;margin:0;max-width:900px}

@media(max-width:1000px){
  .subpage-hero-grid,.content-split,.content-split-reverse,.faq-layout{grid-template-columns:1fr}
  .subpage-hero-media{min-height:420px}
  .advantage-grid,.feature-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .final-cta-inner{grid-template-columns:1fr}
}
@media(max-width:700px){
  .subpage-hero{padding:22px 0 56px}
  .subpage-hero-grid{border-radius:0}
  .subpage-hero-copy{padding:42px 22px}
  .subpage-hero-copy h1{font-size:clamp(2.65rem,12vw,4rem)}
  .subpage-hero-media{min-height:310px}
  .advantage-grid,.feature-grid,.process-grid,.location-grid{grid-template-columns:1fr}
  .section-intro h2,.content-copy h2{font-size:2.45rem}
  .content-image,.content-image img{min-height:300px}
  .faq-heading{padding:30px 24px}
  .faq-heading h2{font-size:2.7rem}
  .location-more{font-size:1rem}
}


/* =========================================================
   SPANNRAHMEN V3 - gestalterische Feinabstimmung
   ========================================================= */

/* H2 auf Unterseiten bewusst ruhiger als in V2 */
.section-intro h2,
.content-copy h2,
.section-heading h2,
.faq-heading h2,
.final-cta h2 {
  font-size: clamp(30px, 3.25vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.028em !important;
}

/* Full-width Hero analog zur freigegebenen Startseite */
.subpage-full-hero {
  min-height: 650px;
}
.subpage-full-hero .hero-image {
  object-position: center 46%;
}
.subpage-full-hero .hero-overlay {
  background: linear-gradient(90deg,
    rgba(3,24,42,.91) 0%,
    rgba(3,24,42,.78) 38%,
    rgba(3,24,42,.28) 68%,
    rgba(3,24,42,.06) 100%);
}
.subpage-full-hero .hero-content h1 {
  max-width: 690px;
  font-size: clamp(46px, 5.6vw, 76px);
}
.subpage-full-hero .hero-lead {
  max-width: 690px;
  margin-bottom: 14px;
}
.subpage-region-copy {
  max-width: 660px;
  margin: 0 0 28px;
  font-size: 17px;
  color: rgba(255,255,255,.88);
}

/* Weniger leere Fläche im ersten Inhaltsblock */
.compact-intro-section {
  padding: 70px 0 76px;
  background: linear-gradient(180deg, #fff 0%, #f8fbf4 100%);
}
.compact-intro-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.compact-content-split {
  gap: 44px;
}
.compact-content-split .content-copy {
  align-self: center;
}
.compact-content-split .content-image {
  min-height: 350px;
}
.compact-content-split .content-image img {
  min-height: 350px;
}

/* Vorteilskarten sichtbar machen */
.section-soft {
  background: var(--surface-green) !important;
}
.advantage-grid {
  gap: 18px;
}
.advantage-card {
  background: #fff !important;
  border: 1px solid rgba(21,99,173,.11) !important;
  box-shadow: 0 12px 30px rgba(6,31,54,.07);
  min-height: 238px;
}
.advantage-card:hover {
  box-shadow: 0 18px 42px rgba(6,31,54,.11);
}
.advantage-number {
  background: var(--green) !important;
}

/* Gewebe-Sektion optisch absetzen */
.feature-grid {
  gap: 18px;
}
.feature-card {
  background: #f4f9eb !important;
  border: 1px solid rgba(143,192,67,.26) !important;
  box-shadow: 0 10px 24px rgba(6,31,54,.05);
}

/* Problem in V2: weiße Schrift auf weißem Hintergrund.
   Jetzt bewusst als volle blaue Fläche. */
.product-focus-blue {
  max-width: none !important;
  width: 100%;
  background: var(--blue-dark) !important;
  color: #fff !important;
  padding: 78px 0 !important;
}
.product-focus-blue .shell {
  width: min(calc(100% - 40px), var(--shell));
}
.product-focus-blue .content-copy h2,
.product-focus-blue .content-copy .lead-copy,
.product-focus-blue .content-copy p {
  color: #fff !important;
}
.product-focus-blue .content-copy p:not(.lead-copy) {
  color: rgba(255,255,255,.82) !important;
}
.product-focus-blue .eyebrow {
  color: #d8f3af !important;
}

/* Prozess-Sektion etwas kompakter und satter */
.process-section {
  background: var(--blue) !important;
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}
.process-section .section-intro {
  margin-bottom: 34px;
}

/* Einsatzgebiet exakt im Stil der Startseite */
.region-section {
  padding-top: 78px !important;
  padding-bottom: 78px !important;
  background: #fff;
}
.region-section .compact {
  margin-bottom: 28px;
}
.region-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
.region-grid > * {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-align: center;
  padding: 14px;
  font-weight: 800;
  background: #fff;
}
.region-grid > *::before {
  content: none !important;
}
.location-pin {
  width: 22px;
  height: 28px;
  fill: var(--green);
  flex: 0 0 auto;
}
.region-surroundings {
  text-align: center;
  margin: 28px 0 0;
  font-weight: 850;
  font-size: 19px;
}

/* FAQ und CTA ebenfalls etwas kräftiger absetzen */
.faq-section {
  background: var(--surface-green) !important;
}
.final-cta {
  background: var(--blue-dark) !important;
}

/* Mobile */
@media (max-width: 760px) {
  .section-intro h2,
  .content-copy h2,
  .section-heading h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: 34px !important;
  }

  .subpage-full-hero {
    min-height: 660px;
  }
  .subpage-full-hero .hero-image {
    object-position: 62% center;
  }
  .subpage-full-hero .hero-overlay {
    background: linear-gradient(90deg,
      rgba(3,24,42,.90) 0%,
      rgba(3,24,42,.76) 58%,
      rgba(3,24,42,.32) 100%);
  }
  .subpage-full-hero .hero-content h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .compact-intro-section {
    padding: 56px 0 60px;
  }
  .compact-intro-heading {
    margin-bottom: 22px;
  }
  .compact-content-split {
    gap: 26px;
  }

  .advantage-card {
    min-height: auto;
  }

  .product-focus-blue {
    padding: 58px 0 !important;
  }

  .region-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   SPANNRAHMEN V4
   ========================================================= */

/* Intro kompakter: Überschrift und Text als ein Block direkt neben dem Bild */
.compact-intro-section {
  padding: 66px 0 70px !important;
}
.compact-intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.compact-intro-copy {
  max-width: 680px;
}
.compact-intro-copy .eyebrow {
  margin-bottom: 10px;
}
.compact-intro-copy h2 {
  margin: 0 0 22px !important;
  font-size: clamp(32px, 3.3vw, 48px) !important;
  line-height: 1.06 !important;
}
.compact-intro-copy .lead-copy {
  margin: 0 0 18px;
  font-size: 1.18rem;
  line-height: 1.5;
}
.compact-intro-copy p:not(.eyebrow):not(.lead-copy) {
  margin: 0;
  color: var(--text-muted);
}
.compact-intro-image,
.compact-intro-image img {
  min-height: 420px !important;
}

/* Einsatzgebiet: auch Leipzig garantiert identisch zu den anderen Karten */
.region-grid > div,
.region-grid > div:last-child,
.region-grid > *:last-child {
  min-height: 82px !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 11px !important;
  text-align: center !important;
  padding: 14px !important;
  font-weight: 800 !important;
  font-size: inherit !important;
  background: #fff !important;
}
.region-grid > div span,
.region-grid > div:last-child span {
  font-size: inherit !important;
  line-height: 1.2 !important;
  color: var(--navy) !important;
  font-weight: 800 !important;
}
.region-grid > div .location-pin,
.region-grid > div:last-child .location-pin {
  width: 22px !important;
  height: 28px !important;
  fill: var(--green) !important;
  flex: 0 0 22px !important;
  margin: 0 !important;
}

/* Prozessüberschrift auf Desktop bewusst einzeilig */
.process-section .section-intro {
  max-width: 1500px !important;
}
.process-section .section-intro h2 {
  font-size: clamp(30px, 2.8vw, 42px) !important;
  line-height: 1.08 !important;
  white-space: nowrap;
}

/* Abschluss-CTA in demselben kräftigen Blau wie die Startseiten-Flächen */
.final-cta {
  background: var(--blue) !important;
}

/* Hero-Zeilenumbruch stabil halten */
.subpage-full-hero .hero-content h1 {
  max-width: 760px !important;
}

/* Mobile */
@media (max-width: 900px) {
  .compact-intro-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .compact-intro-copy {
    max-width: none;
  }
  .compact-intro-image,
  .compact-intro-image img {
    min-height: 320px !important;
  }
  .process-section .section-intro h2 {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .compact-intro-section {
    padding: 54px 0 58px !important;
  }
  .compact-intro-copy h2 {
    font-size: 34px !important;
    margin-bottom: 18px !important;
  }
}


/* =========================================================
   SPANNRAHMEN V5 - FAQ + 4 SCHRITTE WIE STARTSEITE
   ========================================================= */

/* FAQ: Proportionen und Typografie wie auf der Startseite */
.faq-home-style {
  padding: 70px 0 76px !important;
}
.faq-home-style .faq-layout {
  grid-template-columns: 0.37fr 0.63fr !important;
  gap: 44px !important;
  align-items: start !important;
}
.faq-home-style .faq-heading-card {
  padding: 42px 46px !important;
  min-height: 238px !important;
  border-radius: 0 24px 24px 0 !important;
}
.faq-home-style .faq-heading-card .eyebrow {
  font-size: 0.86rem !important;
  letter-spacing: .16em !important;
  margin-bottom: 16px !important;
}
.faq-home-style .faq-heading-card h2 {
  font-size: clamp(38px, 3.3vw, 54px) !important;
  line-height: 1.02 !important;
  margin: 0 !important;
}
.faq-home-style details {
  border-radius: 18px !important;
  margin-bottom: 14px !important;
}
.faq-home-style summary {
  min-height: 70px !important;
  padding: 19px 24px !important;
  font-size: 1.08rem !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
}
.faq-home-style details[open] > div {
  padding: 0 24px 22px 48px !important;
}

/* 4-Schritte-Bereich exakt in der Hierarchie der Startseite */
.process-section {
  padding: 72px 0 78px !important;
}
.process-section .section-intro {
  max-width: 1050px !important;
  margin: 0 auto 48px !important;
  text-align: center !important;
}
.process-section .process-kicker {
  margin: 0 0 10px !important;
  color: #d9f29a !important;
  font-size: 1.08rem !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}
.process-section .section-intro h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(40px, 4.5vw, 62px) !important;
  line-height: 1.04 !important;
  white-space: normal !important;
}
.process-section .process-grid {
  gap: 26px !important;
}
.process-section .process-card {
  min-height: 310px !important;
  padding: 34px 32px !important;
}
.process-section .process-number {
  width: 64px !important;
  height: 64px !important;
  margin-bottom: 28px !important;
  font-size: 1.05rem !important;
}
.process-section .process-card h3 {
  margin-bottom: 14px !important;
}
.process-section .process-card p {
  line-height: 1.55 !important;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-home-style .faq-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .faq-home-style .faq-heading-card {
    border-radius: 0 24px 24px 0 !important;
    max-width: 520px;
  }
}
@media (max-width: 700px) {
  .faq-home-style {
    padding: 54px 0 60px !important;
  }
  .faq-home-style .faq-heading-card {
    padding: 32px 28px !important;
    min-height: auto !important;
  }
  .faq-home-style .faq-heading-card h2 {
    font-size: 38px !important;
  }
  .faq-home-style summary {
    min-height: 62px !important;
    padding: 17px 19px !important;
    font-size: 1rem !important;
  }
  .process-section .section-intro h2 {
    font-size: 38px !important;
  }
  .process-section .process-kicker {
    font-size: 1rem !important;
  }
}


/* =========================================================
   SPANNRAHMEN V6 - finale Vorteile + Startseiten-Prozess
   ========================================================= */
.advantage-grid-checks {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.advantage-grid-checks .advantage-card {
  min-height: 190px !important;
  padding: 30px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.advantage-check {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 22px;
}
.advantage-grid-checks .advantage-card h3 {
  margin: 0 !important;
  font-size: 1.25rem !important;
  line-height: 1.3 !important;
}
@media (max-width: 1100px) {
  .advantage-grid-checks { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 700px) {
  .advantage-grid-checks { grid-template-columns: 1fr !important; }
  .advantage-grid-checks .advantage-card { min-height: auto !important; }
  .process-section .section-intro h2 br { display: none; }
}

/* V7 - FAQ: Startseiten-Darstellung tatsächlich aktivieren */
.faq-section.faq-home-style { background: var(--cream) !important; }
.faq-section.faq-home-style .faq-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.37fr) minmax(0, 0.63fr) !important;
  gap: 44px !important;
  align-items: start !important;
}
.faq-section.faq-home-style .faq-heading.faq-heading-card {
  position: static !important;
  align-self: start !important;
  background: #fff !important;
  border-left: 8px solid var(--green) !important;
  border-radius: 0 24px 24px 0 !important;
  padding: 42px 46px !important;
  min-height: 238px !important;
}
.faq-section.faq-home-style .faq-heading.faq-heading-card h2 {
  font-size: clamp(38px, 3.3vw, 54px) !important;
  line-height: 1.02 !important;
  margin: 0 !important;
}
.faq-section.faq-home-style .faq-list details {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  padding: 0 24px !important;
  margin: 0 0 14px !important;
}
.faq-section.faq-home-style .faq-list summary {
  cursor: pointer !important;
  font-size: 1.08rem !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  padding: 22px 0 !important;
}
.faq-section.faq-home-style .faq-list p {
  color: var(--text-muted) !important;
  margin: 0 !important;
  padding: 0 0 22px !important;
}
@media (max-width: 900px) {
  .faq-section.faq-home-style .faq-layout { grid-template-columns: 1fr !important; gap: 28px !important; }
}

/* V8 - FAQ exakt als Kartenlayout der Startseite */
.faq-section.faq-home-style {
  background: var(--cream) !important;
  padding: 68px 0 74px !important;
}
.faq-section.faq-home-style .faq-layout {
  grid-template-columns: minmax(320px, .36fr) minmax(0, .64fr) !important;
  gap: 54px !important;
}
.faq-section.faq-home-style .faq-heading.faq-heading-card {
  min-height: 0 !important;
  padding: 38px 38px 36px !important;
  border-radius: 0 22px 22px 0 !important;
}
.faq-section.faq-home-style .faq-heading.faq-heading-card .eyebrow {
  display: block !important;
  margin-bottom: 18px !important;
}
.faq-section.faq-home-style .faq-heading.faq-heading-card h2 {
  font-size: clamp(36px, 3vw, 50px) !important;
  line-height: 1.04 !important;
}
.faq-section.faq-home-style .faq-list details {
  padding: 0 22px !important;
  margin-bottom: 14px !important;
  border: 1px solid rgba(21,99,173,.10) !important;
  border-radius: 16px !important;
}
.faq-section.faq-home-style .faq-list summary {
  min-height: 0 !important;
  padding: 18px 0 !important;
  font-size: 1rem !important;
  line-height: 1.3 !important;
  font-weight: 400 !important;
}

/* V8 - Abschlussfrage auf Desktop einzeilig */
.final-cta .final-question {
  font-size: clamp(30px, 2.55vw, 44px) !important;
  line-height: 1.08 !important;
  max-width: none !important;
  white-space: nowrap !important;
}
@media (max-width: 1100px) {
  .final-cta .final-question { white-space: normal !important; }
}
@media (max-width: 900px) {
  .faq-section.faq-home-style .faq-layout { grid-template-columns: 1fr !important; gap: 28px !important; }
  .faq-section.faq-home-style .faq-heading.faq-heading-card { max-width: 520px !important; }
}


/* =========================================================
   V9 - FAQ wirklich 1:1 nach Startseite
   Markup und Maße entsprechen dem freigegebenen Startseitenblock.
   ========================================================= */
#faq.faq-section {
  background: var(--surface-green) !important;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}
#faq .faq-shell {
  display: grid !important;
  grid-template-columns: .75fr 1.25fr !important;
  gap: 50px !important;
  align-items: start !important;
}
#faq .faq-heading {
  align-self: start !important;
  position: sticky !important;
  top: 120px !important;
  padding: 30px !important;
  border-left: 8px solid var(--green) !important;
  background: #fff !important;
  border-radius: 0 18px 18px 0 !important;
  min-height: 0 !important;
}
#faq .faq-heading .eyebrow {
  margin: 0 0 12px !important;
}
#faq .faq-heading h2 {
  margin: 0 !important;
  font-size: clamp(32px, 4vw, 52px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}
#faq .faq-list details {
  background: #fff !important;
  border: 1px solid rgba(21,99,173,.08) !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  margin-bottom: 12px !important;
  min-height: 0 !important;
}
#faq .faq-list summary {
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 1.4 !important;
  padding: 0 !important;
}
#faq .faq-list p {
  color: var(--muted) !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
}

/* Abschlussfrage sicher einzeilig auf normalem Desktop */
.final-cta .final-question {
  font-size: clamp(28px, 2.35vw, 40px) !important;
  line-height: 1.08 !important;
  max-width: none !important;
  white-space: nowrap !important;
}

@media (max-width: 900px) {
  #faq .faq-shell {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  #faq .faq-heading {
    position: static !important;
    top: auto !important;
  }
  .final-cta .final-question {
    white-space: normal !important;
  }
}

/* Shared final benefits standard */
.benefits-title-only {
  margin-bottom: 34px !important;
}
.benefits-title-only h2 {
  margin: 0 !important;
  font-size: clamp(34px, 3.2vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
}
.advantage-grid-checks {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.advantage-grid-checks .advantage-card {
  min-height: 252px !important;
  padding: 34px 34px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
.advantage-grid-checks .advantage-check {
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;
  margin: 0 0 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.advantage-grid-checks .advantage-card h3 {
  margin: 0 !important;
  font-size: 1.16rem !important;
  line-height: 1.35 !important;
}
@media (max-width: 1100px) {
  .advantage-grid-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 650px) {
  .advantage-grid-checks {
    grid-template-columns: 1fr !important;
  }
  .advantage-grid-checks .advantage-card {
    min-height: auto !important;
  }
}


/* SLD V13 - Überschriften: saubere Abstände und kontrollierte Umbrüche */
h1, h2, h3,
.hero h1, .subpage-full-hero h1,
.section-heading h2, .section-intro h2,
.compact-intro-copy h2, .content-copy h2,
.faq-heading h2, .final-question {
  letter-spacing: 0 !important;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.desktop-only-break { display: inline; }

@media (max-width: 700px) {
  .desktop-only-break { display: none !important; }

  h1, h2, h3,
  .hero h1, .subpage-full-hero h1,
  .section-heading h2, .section-intro h2,
  .compact-intro-copy h2, .content-copy h2,
  .faq-heading h2, .final-question {
    letter-spacing: 0 !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .hero h1, .subpage-full-hero h1 {
    font-size: clamp(2.05rem, 9.8vw, 2.9rem) !important;
    line-height: 1.05 !important;
  }
}


/* SLD V14 - Desktop-Heroüberschriften */
@media (min-width: 1101px) {
  .subpage-full-hero .hero-content h1 {
    max-width: 1180px !important;
    width: 100% !important;
    font-size: clamp(58px, 5.1vw, 82px) !important;
    line-height: 0.99 !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .subpage-full-hero .hero-content h1 {
    max-width: 900px !important;
    width: 100% !important;
  }
}


/* SLD V15 - Shell-Einrückung der Unterseiten-Heros wie auf der Startseite */
@media (min-width: 1101px) {
  .subpage-full-hero .hero-content.shell {
    width: min(calc(100% - 48px), var(--shell)) !important;
    margin-inline: auto !important;
  }

  .subpage-full-hero .hero-content h1 {
    width: auto !important;
    max-width: 1180px !important;
  }
}


/* SLD V16 - lange Hero-H1 auf voller Desktopbreite */
@media (min-width: 1300px) {
  .subpage-full-hero .hero-content h1.hero-title-wide {
    max-width: 1240px !important;
    width: 100% !important;
    font-size: clamp(56px, 4.1vw, 68px) !important;
    line-height: 1.0 !important;
  }
}

/* Prozessüberschrift auf voller Desktopbreite an die Breite der 4 Kacheln anpassen */
@media (min-width: 1101px) {
  .process-section .process-heading {
    max-width: none !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .process-section .process-heading .process-eyebrow,
  .process-section .process-heading > .eyebrow {
    max-width: none !important;
    width: 100% !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .process-section .process-heading h2 {
    max-width: none !important;
    width: 100% !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}


/* SLD V17 - Unterseiten-H1 auf voller Desktopbreite kleiner und ruhiger
   Die Startseiten-H1 bleibt unverändert. */
@media (min-width: 1101px) {
  .subpage-full-hero .hero-content h1,
  .subpage-full-hero .hero-content h1.hero-title-wide {
    font-size: clamp(48px, 3.2vw, 58px) !important;
    line-height: 1.02 !important;
    max-width: 1180px !important;
    width: 100% !important;
  }
}


/* SLD V26 - Sven-Foto: quadratische Darstellung ohne unnötige Leerfläche */
.feature-image-person {
  align-self: start;
  background: #fff !important;
}

.feature-image-person img {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  object-fit: cover !important;
  object-position: center center;
  padding: 0 !important;
  background: #fff !important;
}

.feature-image-person figcaption {
  background: #fff !important;
}

/* verhindert den grauen Restbereich unter der Bildunterschrift */
.feature-image-person {
  height: fit-content;
}

.sven-portrait {
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
}

.sven-portrait img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  object-fit: cover !important;
  object-position: center center;
}

/* Deshalb-SLD: Sven-Hero so positionieren, dass die SLD-Wortmarke sichtbar bleibt */
body:has(.deshalb-one-line) .subpage-full-hero .hero-image {
  object-position: center center !important;
}


/* SLD V27 - Sven-Hero korrekt positioniert */
.sven-hero .hero-image {
  object-position: center 35% !important;
}

/* Startseite: Sven-Text in der Warum-SLD-Karte statt unter dem Bild */
.why-sld-person {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 50, 80, .12);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.why-sld-person strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.feature-image-person {
  height: fit-content;
}

.feature-image-person img {
  border-radius: var(--radius);
}

@media (max-width: 700px) {
  .why-sld-person {
    margin-top: 22px;
    padding-top: 18px;
  }
}


/* SLD V28 - Desktop-Feinschliff */
@media (min-width: 1000px) {

  /* Startseite: beide Spalten exakt gleich hoch */
  .why-sld-grid,
  .feature-grid:has(.feature-image-person) {
    align-items: stretch !important;
  }

  .why-sld-grid > *,
  .feature-grid:has(.feature-image-person) > * {
    height: 100% !important;
  }

  .feature-image-person {
    height: 100% !important;
    min-height: 0 !important;
  }

  .feature-image-person img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* Warum-SLD-H2 kompakter, damit sie zweizeilig wird */
  .why-sld-card h2,
  .feature-card h2 {
    font-size: clamp(42px, 3.1vw, 56px) !important;
    line-height: 1.08 !important;
    max-width: 600px !important;
  }

  /* Leerzeile vor Mehr über SLD */
  .why-sld-person + .text-link {
    display: inline-block !important;
    margin-top: 18px !important;
  }

  /* Google-Bewertungen nicht direkt an den Block kleben */
  .reviews-section,
  section:has(.reviews-grid) {
    margin-top: 64px !important;
  }

  /* Deshalb-SLD: Sven sichtbar nach oben holen.
     Die alte 35%-Positionierung wird bewusst überschrieben. */
  .sven-hero .hero-image {
    object-position: center 72% !important;
  }
}


@media (min-width: 1000px) {
  .why-sld-section .split,
  .why-sld-section .feature-grid,
  .why-sld-section .grid-2 {
    align-items: stretch !important;
  }

  .why-sld-section .feature-image-person {
    height: 100% !important;
  }

  .why-sld-section .feature-image-person img {
    height: 100% !important;
    object-fit: cover !important;
  }

  .why-sld-section h2 {
    font-size: 48px !important;
    line-height: 1.08 !important;
  }

  .why-sld-section .why-sld-person + .text-link {
    margin-top: 20px !important;
  }

  .reviews-section {
    margin-top: 72px !important;
  }
}


/* SLD V29 - Sven-Hero final: Desktop und Mobil getrennte Ausschnitte */
@media (min-width: 701px) {
  .sven-hero .hero-image {
    content: url("/assets/img/sven-leonhardt-hero.webp");
    object-position: center center !important;
  }
}

@media (max-width: 700px) {
  .sven-hero .hero-image {
    content: url("/assets/img/sven-leonhardt-hero-mobile.webp");
    object-position: center center !important;
  }

  /* Auch mobil bewusst eine Leerzeile vor "Mehr über SLD" */
  .why-sld-person + .text-link {
    display: inline-block !important;
    margin-top: 18px !important;
  }
}
