/* ============================================================
   enho.de – Design System
   Corporate Design: #0B0B0B / #F4F4F4 / #E7FF00
   Headlines: Space Grotesk · Text: Inter
   ============================================================ */

:root {
  --black: #0B0B0B;
  --offwhite: #F4F4F4;
  --lime: #E7FF00;
  --white: #FFFFFF;
  --g1: #1B1B1B;
  --g2: #2D2D2D;
  --g3: #666666;
  --g4: #999999;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, .35);
  --shadow-card: 0 6px 24px rgba(0, 0, 0, .10);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

::selection { background: var(--lime); color: var(--black); }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.2em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.plus { color: var(--lime); font-weight: 600; }

/* ---------- Skip link & focus ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--black);
  padding: 10px 18px; border-radius: 0 0 12px 0; z-index: 200;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 11, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, .5); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 24px;
  max-width: var(--maxw); margin: 0 auto;
}

.logo { text-decoration: none; line-height: 1.1; }
.logo .logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem; font-weight: 600; color: var(--white);
}
.logo .logo-sub {
  display: block; font-size: .68rem; letter-spacing: .06em;
  color: var(--g4); font-weight: 400;
}

.main-nav ul {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  text-decoration: none; font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--white);
  padding: 6px 0; position: relative; transition: color .25s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--lime);
  transition: width .3s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--lime); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--g2);
  border-radius: 10px; padding: 10px 12px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white);
  margin: 4px 0; transition: transform .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .header-cta { padding: 9px 16px; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
  .main-nav {
    position: fixed; inset: 69px 0 auto 0;
    background: var(--black);
    border-bottom: 1px solid var(--g1);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    padding: 12px 24px 28px;
    max-height: calc(100vh - 69px); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 0; font-size: 1rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- Subnavigation Leistungen ---------- */
.main-nav li { position: relative; }
.has-sub > a .caret {
  color: var(--lime); display: inline-block; margin-left: 4px;
  transition: transform .3s var(--ease); font-weight: 700;
}
.has-sub:hover > a .caret, .has-sub:focus-within > a .caret { transform: rotate(45deg); }
.subnav {
  list-style: none; margin: 0;
  position: absolute; top: calc(100% + 12px); left: -18px;
  min-width: 280px; padding: 10px;
  background: #101010;
  border: 1px solid var(--g1); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 110;
}
.subnav::before {
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.subnav li { margin: 0; }
.subnav a {
  display: block; padding: 10px 14px; border-radius: 9px;
  font-size: .88rem; font-weight: 500; letter-spacing: .01em;
  text-transform: none;
}
.subnav a::after { display: none; }
.subnav a:hover { background: var(--g1); color: var(--lime); }
.subnav .sub-head {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g3); padding: 8px 14px 4px; font-weight: 600;
}
@media (max-width: 980px) {
  .subnav {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none;
    min-width: 0; padding: 0 0 6px 16px; gap: 0;
  }
  .subnav a { padding: 9px 0; font-size: .95rem; }
  .has-sub > a .caret { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 12px;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-primary { background: var(--lime); color: var(--black); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(231, 255, 0, .25);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--g2);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn .p { font-weight: 700; }

.btn .ripple {
  position: absolute; border-radius: 50%; background: rgba(11,11,11,.18);
  transform: scale(0); animation: ripple .55s var(--ease) forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0 clamp(70px, 10vw, 130px);
  background: #000000;
}
.hero h1 { position: relative; z-index: 0; }
.hero h1::before {
  content: ""; position: absolute; z-index: -1;
  inset: -50px -80px -50px -70px;
  background: radial-gradient(55% 65% at 35% 50%, #423D1A 0%, rgba(66, 61, 26, .45) 40%, transparent 75%);
  filter: blur(48px);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: .4em; }
.hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--g4); max-width: 34em; margin-bottom: 2em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--g4); margin-bottom: 22px;
}
.eyebrow::before { content: "+"; color: var(--lime); font-size: 1rem; }

/* Hero-Visual: groß, unten rechts angedockt, nach oben und links in Schwarz auslaufend */
.hero-visual {
  position: absolute; right: 0; bottom: 0; z-index: 0;
  width: fit-content; max-width: 60vw; margin: 0; pointer-events: none;
}
.hero-visual img { max-width: 100%; object-fit: contain; object-position: right bottom; }
.hero-visual img {
  display: block; width: auto;
  height: clamp(460px, 54vw, 820px);
  -webkit-mask-image: radial-gradient(115% 115% at 80% 88%, #000 52%, transparent 82%);
  mask-image: radial-gradient(115% 115% at 80% 88%, #000 52%, transparent 82%);
}
.hero-grid > div:first-child { position: relative; z-index: 1; }
/* ---------- enho der Held: über Plus und Partikeln ---------- */
.hero-bot {
  position: absolute; bottom: 0; right: 36%;
  height: 114%; width: auto; max-width: none;
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .6));
}

/* ---------- Aufsteigende Plusse als Sektions-Effekt ---------- */
.plus-ambient { position: relative; overflow: hidden; }
.plus-ambient .container { position: relative; z-index: 1; }
.pp-field { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pp-field .pp { text-shadow: 0 0 18px currentColor, 0 0 4px currentColor; }
@media (max-width: 900px) {
  .hero { padding-bottom: 0; }
  .hero-visual {
    position: relative; right: auto; bottom: auto;
    margin: 28px -24px 0 auto;
  }
  .hero-visual img { height: clamp(320px, 80vw, 460px); }
}
.pp {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1;
  color: #E7FF00; opacity: 0; pointer-events: none;
  text-shadow: 0 0 14px currentColor;
  animation: pp-rise var(--d, 6s) ease-in-out infinite;
  animation-delay: var(--dl, 0s);
  will-change: transform, opacity;
}
.pp.alt { color: #FAFA03; }
@keyframes pp-rise {
  0%   { transform: translate(0, 0) scale(.55) rotate(0deg); opacity: 0; }
  10%  { opacity: .95; }
  55%  { opacity: .7; }
  100% { transform: translate(var(--dx, 0px), -150px) scale(1.15) rotate(var(--rot, 12deg)); opacity: 0; }
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) {
  .hero-visual img { animation: none; }
  .pp { animation: none; opacity: .35; transform: none; }
}

.hero-hand {
  font-family: 'Caveat', cursive; color: var(--lime);
  font-size: clamp(1.6rem, 3vw, 2.2rem); transform: rotate(-6deg);
  display: inline-block; margin-top: 24px;
}

/* ---------- Sections ---------- */
section { padding: clamp(64px, 9vw, 120px) 0; }

.section-light {
  background: var(--offwhite); color: var(--black);
}
.section-light .eyebrow { color: var(--g3); }
.section-light .muted { color: var(--g3); }
.muted { color: var(--g4); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--g1);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 255, 0, .35);
  box-shadow: var(--shadow-soft);
}
.card .card-plus {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--lime); font-size: 1.6rem; font-weight: 600;
  display: block; margin-bottom: 14px;
}
.card h3 { margin-bottom: .4em; }
.card p { color: var(--g4); margin: 0; font-size: .97rem; }
.card a.card-link {
  display: inline-block; margin-top: 18px; color: var(--lime);
  text-decoration: none; font-weight: 600; font-size: .88rem;
}
.card a.card-link:hover { text-decoration: underline; }

.section-light .card {
  background: var(--white); border-color: rgba(0, 0, 0, .06);
  box-shadow: var(--shadow-card);
}
.section-light .card p { color: var(--g3); }
.section-light .card:hover { border-color: rgba(11, 11, 11, .2); }

/* ---------- Zahlen / Counter ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; color: var(--lime);
}
.stat .lbl { color: var(--g4); font-size: .9rem; margin-top: 6px; }

/* ---------- Prozess ---------- */
.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .process { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 24px; border: 1px solid var(--g2); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  color: var(--lime); font-size: 1.3rem; display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--g4); font-size: .93rem; margin: 0; }

/* ---------- Team / Über uns ---------- */
.team-block {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center;
}
@media (max-width: 860px) { .team-block { grid-template-columns: 1fr; } }
.team-photo {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.team-photo img { width: 100%; }
blockquote {
  margin: 0; font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.35;
}
blockquote footer { font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--g4); margin-top: 18px; }

/* ---------- Bewertungen ---------- */
.review-card { display: flex; flex-direction: column; gap: 14px; }
.review-stars { color: var(--lime); letter-spacing: 3px; font-size: 1.05rem; }
.review-card cite { font-style: normal; color: var(--g4); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details {
  border: 1px solid var(--g2); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: rgba(231, 255, 0, .4); }
.faq summary {
  cursor: pointer; padding: 20px 24px; font-weight: 600;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--lime); font-size: 1.4rem; line-height: 1; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--g4); }
.section-light .faq details { border-color: rgba(0,0,0,.12); background: var(--white); }
.section-light .faq .faq-body { color: var(--g3); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--lime); color: var(--black);
  border-radius: var(--radius); padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 32px; align-items: center;
}
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { margin-bottom: .3em; }
.cta-band p { margin: 0; color: rgba(11, 11, 11, .75); }
.cta-band .btn { background: var(--black); color: var(--white); }
.cta-band .btn:hover { box-shadow: 0 10px 30px rgba(0,0,0,.3); }

/* ---------- Content / Landingpage-Text ---------- */
.content h2 { margin-top: 1.1em; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin-top: 1em; }
.content ul { padding-left: 1.2em; }
.content li { margin-bottom: .5em; color: var(--g4); }
.content li::marker { color: var(--lime); }
.section-light .content li { color: var(--g3); }
.content a { color: var(--lime); }
.section-light .content a { color: var(--black); font-weight: 600; }

/* ---------- Orte-Liste ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.chips li {
  border: 1px solid var(--g2); border-radius: 999px;
  padding: 8px 18px; font-size: .88rem; color: var(--g4); margin: 0;
}
.section-light .chips li { border-color: rgba(0,0,0,.14); color: var(--g3); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; background: var(--g1); border: 1px solid var(--g2);
  border-radius: var(--radius-sm); padding: 14px 16px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 1rem;
  transition: border-color .25s var(--ease);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--lime);
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 14px; color: var(--g4); }
.contact-list a { color: var(--white); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--lime); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 20px 0 0; font-size: .82rem; color: var(--g4); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--g3); }
.breadcrumb a { color: var(--g4); text-decoration: none; }
.breadcrumb a:hover { color: var(--lime); }

/* ---------- Footer ---------- */
.site-footer {
  background: #080808; border-top: 1px solid var(--g1);
  padding: clamp(48px, 7vw, 80px) 0 32px;
  font-size: .92rem; color: var(--g4);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--g4); text-decoration: none; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid var(--g1); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }


/* ---------- Kontrast-Fixes auf hellen Flächen ---------- */
.section-light .stat .num { color: var(--black); }
.section-light .stat .num::after { content: ""; }
.section-light .card .card-plus { color: var(--black); }
.section-light .review-stars { color: #8A7B00; }

/* ---------- Footer-Überschriften (keine echten Headings mehr) ---------- */
.footer-head {
  color: var(--white); font-size: .95rem; margin: 0 0 16px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
}

/* ---------- Karten-Titel ohne Heading-Semantik ---------- */
.card-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.2;
  letter-spacing: -0.01em; margin: 0 0 .4em; color: inherit;
}

/* ---------- Blog: Lesezeit ---------- */
.meta-line { color: var(--g4); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.meta-line .dot { color: var(--lime); margin: 0 8px; }


/* ---------- DSGVO: Google Maps erst nach Klick laden ---------- */
.map-consent {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; text-align: center; padding: 32px;
  background: var(--g1); border: 1px dashed var(--g2); border-radius: var(--radius);
}
.section-light .map-consent { background: #eaeaea; border-color: #ccc; }
.map-consent p { margin: 0; color: var(--g4); font-size: .92rem; max-width: 34em; }
.section-light .map-consent p { color: var(--g3); }


/* ---------- Unterseiten-Hero: großes Visual, einheitliche Größe ---------- */
.hero-sub .hero-visual img { height: clamp(420px, 44vw, 640px); }
.hero-sub .hero-bot { height: 106%; }
@media (min-width: 901px) {
  .hero-sub { display: flex; flex-direction: column; min-height: clamp(540px, 48vw, 740px); }
  .hero-sub > .container { width: 100%; }
  .hero-sub > .container:last-of-type { flex: 1; align-content: center; }
}

/* ---------- Breadcrumb im Hero ---------- */
.hero .breadcrumb { padding: 18px 0 0; position: relative; z-index: 5; }

/* ---------- Header-CTA: schlanker, Rest der Buttons unverändert ---------- */
.header-cta { padding: 10px 20px; border-radius: 10px; font-size: .82rem; }


/* ---------- Bildlogo ---------- */
.logo { display: inline-flex; align-items: center; }
.logo img { height: 34px; width: auto; display: block; }
.site-footer .logo img { height: 40px; }
@media (max-width: 980px) {
  .logo img { height: 28px; }
}


/* ---------- Fixes: Logo-Seitenverhältnis, Mobile-CTA, Enho-Bodenkontakt ---------- */
.logo { flex: 0 0 auto; }
.logo img { max-width: none; }
.cta-short { display: none; }


/* ---------- 'Was wir machen': Relaunch mit Kugelgrafik ---------- */
.wwm-top {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 32px; align-items: center; margin-bottom: 32px;
}
.wwm-top .section-head { margin-bottom: 0; }
.wwm-globe img {
  width: 100%; height: auto; display: block;
  -webkit-mask-image: radial-gradient(72% 72% at 50% 48%, #000 55%, transparent 84%);
  mask-image: radial-gradient(72% 72% at 50% 48%, #000 55%, transparent 84%);
  animation: floaty 9s ease-in-out infinite;
}
@media (max-width: 900px) {
  .wwm-top { grid-template-columns: 1fr; gap: 8px; }
  .wwm-globe { max-width: 440px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) { .wwm-globe img { animation: none; } }

/* ---------- Karten auf hellen Flächen: weiß, weich, mit Hover-Lift ---------- */
.section-light .card {
  background: #fff; border: 1px solid #ececec; border-radius: 18px;
  box-shadow: 0 6px 24px rgba(11, 11, 11, .05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.section-light .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(11, 11, 11, .10);
}

/* ---------- Gelbes Plus auf hellem Grund: harter Versatzschatten statt Umfärben ---------- */
.section-light .card .card-plus {
  color: var(--lime);
  text-shadow: 2px 2px 0 var(--black);
}

/* Spamschutz */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
