:root {
  --bg: #f4fff2;
  --bg-soft: #edf9ee;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-border: rgba(255, 255, 255, 0.95);
  --text: #16392b;
  --text-soft: #325f4d;
  --accent: #52bf3e;
  --accent-2: #2f9a74;
  --shadow: 0 12px 28px rgba(48, 103, 55, 0.1);
  --radius-xl: 24px;
  --radius-l: 16px;
  --radius-m: 12px;
}

/* Legal pages share the Classic visual system, but need room for the fixed header. */
.legal-page .layout {
  padding-top: 76px;
}

@media (max-width: 680px) {
  .legal-page .layout {
    padding-top: 64px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(760px 380px at 96% -8%, #d6ffc6 0%, transparent 68%),
    radial-gradient(680px 340px at 4% 12%, #e5ffd6 0%, transparent 70%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  /* Prevent layout shift when scrollbars disappear on desktop. */
  padding-right: var(--scrollbar-comp, 0px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: #153729;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.glass {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -2;
  filter: blur(36px);
}

.ambient-a {
  width: 420px;
  height: 420px;
  right: -110px;
  top: -80px;
  border-radius: 42% 58% 47% 53%;
  background: rgba(125, 226, 95, 0.24);
}

.ambient-b {
  width: 460px;
  height: 460px;
  left: -150px;
  bottom: -140px;
  border-radius: 55% 45% 48% 52%;
  background: rgba(106, 204, 160, 0.18);
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 29, 21, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 40;
}

.backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  position: sticky;
  top: 0.5rem;
  z-index: 50;
  padding: 0 1rem;
}

.topbar {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  /* Font styles removed as we use image now */
}

.brand-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 8px;
}

.brand {
  display: block;
  text-decoration: none;
}

.brand img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
}

.code-line {
  font-family: "JetBrains Mono", "Consolas", "Courier New", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: #2d6a4f;
  display: block;
  min-height: 1.1em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  opacity: 0.9;
  margin-left: 0;
  /* Flush left with logo (no transparent border) */
}

.topnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

.topnav a {
  font-size: 0.91rem;
  font-weight: 600;
  color: #255a40;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Desktop KI launcher (opens the same flow wizard + embedded chat). */
.ki-launch {
  display: none;
}

@media (min-width: 961px) {
  .ki-launch {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 92;
    border: 0;
    padding: 0.78rem 0.98rem;
    border-radius: 999px;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    color: #1b5039;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(242, 254, 240, 0.86)) padding-box,
      linear-gradient(120deg, rgba(86, 182, 79, 0.6), rgba(48, 146, 111, 0.5), rgba(131, 214, 114, 0.55)) border-box;
    border: 1px solid transparent;
    box-shadow:
      0 18px 38px rgba(16, 58, 36, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px) saturate(1.1);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .ki-launch:hover {
    transform: translateY(-1px);
    box-shadow:
      0 22px 48px rgba(16, 58, 36, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .ki-launch:active {
    transform: translateY(0);
    box-shadow:
      0 16px 34px rgba(16, 58, 36, 0.17),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .ki-launch-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    box-shadow:
      0 0 0 3px rgba(82, 191, 62, 0.16),
      0 10px 20px rgba(16, 58, 36, 0.16);
  }

  .ki-launch-text {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
  }
}

.mini-cta,
.mobile-cta,
.cta,
.m-cta,
.m-drawer-cta,
.m-bottom-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #f9fff7;
  font-weight: 700;
}

.mini-cta {
  font-size: 0.85rem;
  padding: 0.56rem 0.98rem;
}

.mobile-cta {
  display: none;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(83, 188, 67, 0.2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1f5b3d;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.layout {
  width: min(1160px, 92vw);
  margin: 1.2rem auto 3rem;
}

.section {
  margin-top: clamp(2.8rem, 7vw, 5.5rem);
}

.section-head {
  margin-bottom: 1rem;
}

.eyebrow {
  margin-bottom: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #408a48;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.hero-copy p {
  margin-top: 0.9rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta {
  padding: 0.8rem 1.3rem;
}

.phone-link {
  font-weight: 700;
  color: #255e43;
}

.hero-note-text {
  margin-top: 0.8rem;
  font-size: 0.94rem;
}

.image-shell {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-media {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(225, 239, 224, 0.95), rgba(200, 221, 199, 0.88));
}

.image-shell :is(img, video) {
  width: 100%;
  height: min(45vw, 490px);
  object-fit: cover;
  display: block;
}

.hero-poster {
  position: relative;
  z-index: 1;
  transition: opacity 320ms ease;
}

.hero-visual {
  position: relative;
}

.hero-info {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: var(--radius-m);
  padding: 0.7rem 0.85rem;
}

.hero-info strong {
  display: block;
  color: #1f5538;
}

.hero-info span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.86rem;
}

.services-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.services-showcase,
.process-strip {
  position: relative;
}

.services-showcase {
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(180deg, rgba(251, 255, 249, 0.97), rgba(240, 252, 237, 0.92));
  border: 1px solid rgba(61, 132, 74, 0.12);
  box-shadow: 0 4px 20px rgba(20, 72, 40, 0.05);
}

.process-strip {
  padding-top: 0.1rem;
}

.service-card,
.package {
  border-radius: var(--radius-l);
  padding: 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-showcase .service-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(72, 153, 77, 0.12);
  box-shadow: 0 8px 28px rgba(23, 76, 45, 0.07), 0 2px 6px rgba(23, 76, 45, 0.04);
}

.service-card p {
  margin-top: 0.46rem;
  flex-grow: 1;
}

.service-card h3,
.m-card h3,
.timeline h3,
.m-steps h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 999px;
  font-size: 1rem;
  background: rgba(82, 191, 62, 0.12);
}

.card-icon svg {
  width: 55%;
  height: 55%;
}

.services-extra {
  margin-top: 0.84rem;
  font-size: 0.95rem;
  color: #325b49;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  position: relative;
}

.timeline li {
  position: relative;
  border-radius: var(--radius-l);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 132, 74, 0.1);
  box-shadow: 0 12px 24px rgba(23, 76, 45, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 1.7rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #3c8547;
  background: rgba(86, 190, 79, 0.16);
}

.timeline h3 {
  margin-top: 0.62rem;
}

.timeline p {
  margin-top: 0.4rem;
  color: #345a48;
}

.carousel {
  border-radius: var(--radius-l);
  padding: 0.9rem;
}

.carousel-track {
  position: relative;
}

.slide {
  display: none;
  margin: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
}

.slide.is-active {
  display: block;
}

.slide img {
  width: 100%;
  height: min(42vw, 420px);
  object-fit: cover;
  display: block;
}

.slide figcaption {
  margin-top: -1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  font-size: 0.94rem;
  box-shadow: 0 12px 28px rgba(20, 72, 45, 0.1);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(135, 203, 150, 0.2);
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.slide-tag {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(82, 191, 62, 0.18);
  color: #1e5e3a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slide-location {
  font-size: 0.82rem;
  color: #4a7a60;
}

/* Trust bar under hero CTA */
.trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.84rem;
  color: #2f6649;
  font-weight: 500;
}

.trust-item strong {
  color: #1a4d32;
}

.trust-sep {
  color: rgba(47, 102, 73, 0.45);
  font-size: 1rem;
}

/* ============================================
   BENEFIT / VORTEILE SECTION
   ============================================ */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(72, 153, 77, 0.12);
  box-shadow: 0 8px 32px rgba(20, 72, 45, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(20, 72, 45, 0.13);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(82, 191, 62, 0.18), rgba(47, 154, 116, 0.14));
  border: 1px solid rgba(82, 191, 62, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #2a7a52;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 55%;
  height: 55%;
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: #153729;
  margin-bottom: 0.55rem;
}

.benefit-card p {
  font-size: 0.93rem;
  color: #3d6854;
  line-height: 1.65;
  flex: 1;
}

.benefit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.56rem 1.1rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #f0fff8;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 180ms ease, transform 180ms ease;
}

.benefit-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Alternating section background for visual rhythm */
#vorteile {
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(160deg, rgba(232, 252, 230, 0.7), rgba(218, 245, 225, 0.6));
  border: 1px solid rgba(61, 132, 74, 0.1);
}

/* Service card hover */
.service-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(20, 72, 45, 0.1);
}

/* Bigger card icons for service cards */
.service-card .card-icon,
.m-card .card-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(82, 191, 62, 0.18), rgba(47, 154, 116, 0.12));
}

/* Process step connector arrow between cards */
.timeline {
  position: relative;
}

.timeline li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1.45rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(82, 191, 62, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* Improved process card padding */
.timeline p {
  flex-grow: 1;
}

/* Section head spacing */
.section-head {
  margin-bottom: 1.4rem;
}

/* Benefit card CTA as anchor link */
a.benefit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.carousel-controls {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.64rem;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(83, 188, 67, 0.22);
  color: #1f5b3d;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 0.44rem;
}

.dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(63, 141, 76, 0.34);
  cursor: pointer;
}

.dot.is-active {
  background: #3ba365;
}

.pricing-controls {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem;
  margin-bottom: 0.9rem;
}

.toggle {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2a5f47;
  font-family: inherit;
  font-weight: 700;
  padding: 0.52rem 1rem;
  cursor: pointer;
}

.toggle.is-active {
  background: rgba(83, 188, 67, 0.2);
}

.price {
  margin-top: 0.42rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  color: #225f3f;
}

.meta {
  margin-top: 0.28rem;
  font-size: 0.93rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.8rem;
}

.faq-list,
.m-faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item,
.faq-aside {
  border-radius: var(--radius-l);
  padding: 0.85rem 0.95rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #24553f;
}

.faq-item p {
  margin-top: 0.42rem;
}

.faq-aside p+p {
  margin-top: 0.34rem;
}

.footer {
  width: min(1160px, 92vw);
  margin: 2rem auto 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(55, 117, 70, 0.2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.footer p {
  color: #315b49;
}

.legal-section {
  margin-top: 2rem;
}

.legal-card {
  border-radius: 16px;
  padding: 1rem;
}

.legal-heading {
  margin-top: 1rem;
}

.legal-copy {
  margin-top: 0.4rem;
}

.legal-copy-spaced {
  margin-top: 0.7rem;
}

.legal-note {
  margin-top: 0.7rem;
  font-weight: 700;
  color: #1b5039;
}

.legal-back {
  margin-top: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.stagger {
  transition-delay: var(--delay, 0ms);
}

.mobile-app {
  display: none;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .faq-layout,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --m-surface: rgba(255, 255, 255, 0.88);
    --m-surface-soft: rgba(244, 255, 241, 0.88);
    --m-stroke: rgba(55, 132, 78, 0.18);
    --m-shadow: 0 14px 32px rgba(25, 82, 45, 0.13);
    --m-radius: 18px;
    --m-gap: clamp(0.82rem, 3vw, 1.15rem);
  }

  body:not(.legal-page) .site-header,
  body:not(.legal-page) .layout,
  body:not(.legal-page) .footer,
  body:not(.legal-page) .backdrop {
    display: none;
  }

  .ambient {
    display: none;
  }

  body:not(.legal-page) .mobile-app {
    display: block;
    position: relative;
    isolation: isolate;
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 0.85rem clamp(0.78rem, 4vw, 1.12rem) calc(7.5rem + env(safe-area-inset-bottom));
    overflow-x: hidden;
    background:
      radial-gradient(140% 100% at 8% 14%, rgba(152, 232, 128, 0.1), rgba(152, 232, 128, 0) 66%),
      radial-gradient(136% 96% at 92% 28%, rgba(128, 214, 172, 0.09), rgba(128, 214, 172, 0) 62%),
      linear-gradient(162deg, rgba(255, 255, 255, 0.82), rgba(245, 255, 244, 0.74));
    background-size: 340% 340%, 340% 340%, 100% 100%;
    animation: m-mobile-surface-shift 12s ease-in-out infinite;
  }

  body.legal-page .mobile-app {
    display: none;
  }

  .mobile-app::before,
  .mobile-app::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    filter: blur(34px);
    transform-origin: center;
  }

  .mobile-app>* {
    position: relative;
    z-index: 1;
  }

  .mobile-app::before {
    width: 360px;
    height: 360px;
    right: -150px;
    top: -6px;
    background: radial-gradient(circle at 35% 35%, rgba(113, 224, 85, 0.24), rgba(113, 224, 85, 0));
    animation: m-float-a 7.6s ease-in-out infinite;
  }

  .mobile-app::after {
    width: 380px;
    height: 380px;
    left: -170px;
    top: 38%;
    background: radial-gradient(circle at 62% 42%, rgba(78, 182, 138, 0.22), rgba(78, 182, 138, 0));
    animation: m-float-b 8.4s ease-in-out infinite;
  }

  body.legal-page {
    background:
      radial-gradient(760px 380px at 96% -8%, #d6ffc6 0%, transparent 68%),
      radial-gradient(680px 340px at 4% 12%, #e5ffd6 0%, transparent 70%),
      linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
    animation: none;
  }

  .m-topbar {
    position: sticky;
    top: 0.5rem;
    z-index: 70;
    margin-bottom: 1.2rem;
    border-radius: 14px;
    border: 1px solid var(--m-stroke);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.92), rgba(242, 255, 236, 0.78));
    padding: 0.6rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    box-shadow: var(--m-shadow);
  }

  .m-legal {
    margin-top: 1.1rem;
    padding: 0.5rem 0.2rem;
    text-align: center;
    color: #356650;
    font-size: 0.86rem;
  }

  .m-legal a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .m-brand-wrap {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    align-items: center;
    padding-left: 4px;
  }

  .m-brand {
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #174430;
    display: inline-flex;
    /* Use inline-flex to hug content, handled by wrap align-items */
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
  }

  .m-brand img {
    display: block;
    height: 28px !important;
    width: auto !important;
    margin: 0;
    padding: 0;
  }

  .mobile-brand-logo {
    display: block;
    height: 28px;
    width: auto;
  }

  .m-code-line {
    font-family: "JetBrains Mono", "Consolas", "Courier New", monospace;
    font-size: clamp(0.64rem, 2.35vw, 0.72rem);
    letter-spacing: 0.01em;
    color: #2d6a4f;
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 1.1em;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    text-align: left;
    contain: layout paint;
    -webkit-mask-image: none;
    mask-image: none;
    margin-left: 0;
    margin-top: 0;
    padding-right: 0.08rem;
  }

  .m-top-actions {
    display: flex;
    align-items: center;
    gap: 0.52rem;
    flex: 0 0 auto;
  }

  .m-header-badges {
    display: none;
    /* Moved to hero image */
  }

  .m-header-badges img:nth-child(2) {
    height: 32px;
    /* Brandenburg badge extra large */
  }

  .m-quick-call {
    min-width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--m-stroke);
    background: rgba(249, 255, 246, 0.95);
    color: #235c41;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(33, 93, 53, 0.12);
  }

  .m-menu-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--m-stroke);
    border-radius: 11px;
    background: rgba(80, 175, 84, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: background-color 260ms ease, transform 260ms ease;
  }

  .m-menu-btn:focus-visible,
  .m-drawer a:focus-visible,
  .m-quick-call:focus-visible,
  .m-phone:focus-visible,
  .m-cta:focus-visible,
  .m-cta-ai:focus-visible,
  .m-contact-cta:focus-visible,
  .m-bottom-bar:focus-visible,
  .m-bottom-bar a:focus-visible,
  .m-bottom-bar button:focus-visible,
  .dot:focus-visible,
  .icon-btn:focus-visible {
    outline: 2px solid #2b8b57;
    outline-offset: 2px;
  }

  .m-menu-btn span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #1f5a3c;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .m-menu-btn.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .m-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }

  .m-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .m-backdrop {
    position: fixed;
    inset: 0;
    z-index: 75;
    background: rgba(11, 32, 20, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
  }

  .m-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .m-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 340px);
    height: 100dvh;
    z-index: 90;
    /* Higher than sticky bar */
    padding: 5.4rem 1rem 1.5rem;
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 255, 243, 0.96) 50%, rgba(235, 250, 232, 0.94) 100%),
      radial-gradient(280px 160px at 100% 0%, rgba(116, 209, 79, 0.15), transparent 70%),
      radial-gradient(200px 200px at 0% 100%, rgba(82, 191, 62, 0.08), transparent 70%);
    border-left: 1px solid rgba(55, 132, 78, 0.15);
    box-shadow:
      -20px 0 48px rgba(18, 54, 33, 0.18),
      inset 1px 0 0 rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(104%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .m-drawer.open {
    transform: translateX(0);
  }

  .m-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(55, 132, 78, 0.12);
    margin-bottom: 0.5rem;
  }

  .m-drawer-title {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #4c8f5f;
  }

  .m-drawer-badges {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .m-drawer-badges img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
    opacity: 0.9;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .m-drawer-badges img:hover {
    transform: scale(1.1);
    opacity: 1;
  }

  .m-drawer-badges img:nth-child(2) {
    height: 48px;
  }

  .m-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
  }

  .m-drawer-nav a {
    padding: 0.72rem 0.4rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #24543d;
    text-decoration: none;
    border-bottom: 1px solid rgba(55, 132, 78, 0.08);
    transition: color 180ms ease;
  }

  .m-drawer-nav a:last-child {
    border-bottom: none;
  }

  .m-drawer-nav a:hover,
  .m-drawer-nav a.is-active,
  .m-drawer-nav a[aria-current="true"] {
    color: #1b8857;
  }

  .m-drawer-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(55, 132, 78, 0.1);
    border-bottom: 1px solid rgba(55, 132, 78, 0.1);
    margin-top: 0.5rem;
  }

  .m-drawer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 0.4rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(55, 132, 78, 0.12);
    color: #2d5f49;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    transition: all 180ms ease;
  }

  .m-drawer-action:hover {
    background: rgba(81, 184, 72, 0.1);
    border-color: rgba(55, 132, 78, 0.2);
  }

  .m-drawer-action svg {
    opacity: 0.85;
  }

  .m-drawer-footer {
    margin-top: auto;
    padding-top: 0.6rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    /* Safe area for notch devices */
  }

  .m-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #f7fff8;
    background: linear-gradient(125deg, rgba(82, 191, 62, 0.95), rgba(47, 154, 116, 0.95));
    box-shadow:
      0 10px 24px rgba(22, 78, 48, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: transform 0.2s ease;
  }

  .m-drawer-cta:active {
    transform: scale(0.98);
  }

  .m-hero,
  .m-section {
    margin-top: 1.35rem;
  }

  .m-hero .eyebrow,
  .m-section .eyebrow {
    margin-bottom: 0.35rem;
  }

  .m-hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .m-hero p {
    margin-top: 0.55rem;
    font-size: clamp(0.88rem, 3.6vw, 0.98rem);
    line-height: 1.5;
    color: #3b6b54;
  }
}

/* Process Step Illustrations */
.step-visual,
.m-step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.step-visual img,
.m-step-visual img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  border-radius: 12px;
}

.step-visual span,
.m-step-visual span {
  font-weight: 700;
  color: var(--accent);
}

.m-hero-lead {
  font-weight: 500;
  color: #3b6b54;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 0.6rem;
}

.m-hero-image {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-top: 1.3rem;
}

.m-hero-image :is(img, video) {
  width: 100%;
  display: block;
}

.m-hero-info {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: var(--radius-m);
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.m-hero-info strong {
  display: block;
  color: #1f5538;
  font-size: 0.95rem;
}

.m-hero-info .hero-note-text {
  font-size: 0.78rem;
  color: #3a6b50;
}

.m-hero-badges {
  display: none;
  /* Removed from mobile */
}

.m-hero-badges img {
  height: 18px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

.m-hero-badges img:nth-child(2) {
  height: 22px;
  /* Brandenburg badge bigger */
}

.m-rotator {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #27874f;
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
  will-change: transform, opacity;
}

.m-rotator.is-out {
  opacity: 0;
  transform: translateY(-0.46em);
  filter: blur(2px);
}

.m-rotator.is-in {
  animation: m-rotator-in 440ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.m-hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.m-hero-cta-primary {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0.78rem 1.4rem;
  border-radius: 14px;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #f7fff8;
  background: linear-gradient(135deg, #44b536, #2e9670);
  box-shadow:
    0 8px 20px rgba(22, 78, 48, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.m-hero-cta-primary:active {
  transform: translateY(1px);
  box-shadow:
    0 4px 12px rgba(22, 78, 48, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.m-hero-cta-wa {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.1);
  color: #1a5c3a;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.1);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.m-hero-cta-wa svg {
  color: #25d366;
  flex-shrink: 0;
}

.m-hero-cta-wa:active {
  transform: translateY(1px);
  background: rgba(37, 211, 102, 0.12);
}

.m-cta,
.m-phone,
.m-contact-cta {
  min-height: 48px;
}

.m-phone {
  border-radius: 999px;
  border: 1px solid rgba(81, 169, 92, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 255, 246, 0.9));
  color: #21583e;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 18px rgba(27, 82, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.m-hero-image {
  margin-top: 0.9rem;
  border-radius: calc(var(--m-radius) + 2px);
  border: 1px solid var(--m-stroke);
  overflow: hidden;
  box-shadow: var(--m-shadow);
}

.m-hero-image :is(img, video) {
  width: 100%;
  height: clamp(220px, 58vw, 330px);
  object-fit: cover;
  display: block;
}

.m-trust-line {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #3a6b54;
  line-height: 1.6;
  text-align: center;
}

.m-section h2 {
  font-size: clamp(1.33rem, 6vw, 1.65rem);
  line-height: 1.18;
}


.m-service-list,
.m-packages,
.m-faq-list {
  margin-top: 0.92rem;
}

.m-benefits-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.m-benefit-card {
  padding: 1.5rem;
}

.m-services-showcase,
.m-process-strip {
  position: relative;
  padding: 0;
  border-radius: 0;
}

.m-services-showcase {
  background: none;
  border: 0;
}

.m-process-strip {
  background: none;
  border: 0;
  box-shadow: none;
}

.m-service-list,
.m-packages {
  display: grid;
  gap: 0.68rem;
}

.m-card,
.m-steps li,
.m-contact,
.m-carousel,
.m-section .pricing-controls,
.m-faq-list .faq-item {
  border-radius: var(--m-radius);
  border: 1px solid var(--m-stroke);
  background: var(--m-surface);
  box-shadow: var(--m-shadow);
}

.m-card {
  padding: 0.9rem 0.92rem;
  background: rgba(255, 255, 255, 0.9);
}

.m-card h3 {
  font-size: 1.03rem;
}

.m-card p {
  margin-top: 0.32rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #325f4c;
}

.m-steps {
  margin: 0.92rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.m-steps li {
  position: relative;
  padding: 0.94rem 0.95rem 0.94rem 1.26rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.m-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #6acb52, #3ca56a);
  opacity: 0.72;
}

.m-steps .step-number {
  display: inline-flex;
  min-width: 34px;
  height: 24px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1d553a;
  background: rgba(86, 190, 79, 0.18);
}

.m-steps h3 {
  margin-top: 0.55rem;
  font-size: 1rem;
}

.m-steps p {
  margin-top: 0.3rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #325b49;
}

.m-carousel {
  margin-top: 0.9rem;
  padding: 0.76rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(241, 254, 238, 0.84)),
    var(--m-surface-soft);
}

.m-carousel .slide {
  border-radius: 13px;
}

.m-carousel .slide img {
  height: clamp(220px, 56vw, 320px);
}

.m-carousel .slide figcaption {
  margin-top: 0.62rem;
  font-size: 0.91rem;
  line-height: 1.45;
}

.m-section .pricing-controls {
  display: flex;
  margin-top: 0.9rem;
  margin-bottom: 0.7rem;
  padding: 0.24rem;
  background: rgba(255, 255, 255, 0.8);
}

.m-section .pricing-controls .toggle {
  flex: 1;
}

.m-packages .package {
  border-radius: var(--m-radius);
  border: 1px solid var(--m-stroke);
  background: var(--m-surface);
  padding: 0.92rem;
}

.m-faq-list .faq-item {
  padding: 0.86rem 0.92rem;
}

.m-faq-list .faq-item summary {
  font-size: 0.95rem;
  line-height: 1.4;
}

.m-contact {
  padding: 1rem 0.96rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 253, 236, 0.84)),
    var(--m-surface-soft);
}

.m-contact h3 {
  font-size: 1.08rem;
}

.m-contact p {
  margin-top: 0.32rem;
  color: #315d4a;
}

.m-contact-cta {
  margin-top: 0.82rem;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #f9fff7;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.m-bottom-bar {
  position: fixed;
  left: 0.88rem;
  right: 0.88rem;
  bottom: calc(0.6rem + env(safe-area-inset-bottom));
  z-index: 85;

  border: 0;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;

  min-height: 60px;
  padding: 0.92rem 3.55rem 0.92rem 1.28rem;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(136deg, rgba(17, 82, 57, 0.98), rgba(38, 128, 88, 0.98)) padding-box,
    linear-gradient(120deg, rgba(147, 230, 166, 0.55), rgba(101, 208, 138, 0.14)) border-box;
  background-size: 180% 180%, 160% 160%;
  backdrop-filter: blur(11px) saturate(1.08);
  color: #f6fff8;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(1.03rem, 4.25vw, 1.18rem);
  letter-spacing: 0.01em;

  border-radius: 18px;
  border: 1px solid transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 20px 38px rgba(12, 52, 36, 0.34),
    0 4px 10px rgba(18, 64, 44, 0.22);
  isolation: isolate;
  overflow: hidden;
  animation: m-bottom-gradient 6.8s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 1.35rem)) scale(0.96);
  filter: brightness(0.98);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease,
    background-position 280ms ease;
}

.m-bottom-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.m-bottom-bar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -38%;
  width: 42%;
  border-radius: 16px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  animation: m-bottom-sheen 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.m-bottom-bar::after {
  content: "\2192";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 2.05rem;
  height: 2.05rem;
  margin-top: -1.025rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #f7fff9;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 8px 16px rgba(9, 44, 29, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 2;
  transition: transform 200ms ease, opacity 200ms ease;
}

.m-bottom-bar:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 24px 44px rgba(12, 52, 36, 0.38),
    0 5px 12px rgba(18, 64, 44, 0.24);
}

.m-bottom-bar:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

.m-bottom-bar:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 16px 30px rgba(12, 52, 36, 0.3),
    0 3px 8px rgba(18, 64, 44, 0.18);
}

.flow-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 28, 18, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.flow-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.flow {
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%) translateY(14px);
  width: min(620px, calc(100% - 1.4rem));
  max-height: min(84dvh, 760px);
  overflow: auto;
  z-index: 130;
  border-radius: 22px;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.flow.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.flow.is-chat-step {
  width: min(640px, calc(100% - 1rem));
  max-height: min(92dvh, 880px);
}

.flow-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(63, 141, 76, 0.16);
}

.flow-progress {
  padding-top: 0.8rem;
}

.flow-progress-track {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  scrollbar-width: none;
}

.flow-progress-track::-webkit-scrollbar {
  display: none;
}

.flow-progress-pill {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 132, 78, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #4d735f;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.flow-progress-pill.is-active {
  background: linear-gradient(120deg, rgba(82, 191, 62, 0.18), rgba(47, 154, 116, 0.14));
  border-color: rgba(82, 191, 62, 0.42);
  color: #1d573d;
}

.flow-progress-pill.is-complete {
  color: #2a684b;
}

.flow-progress-pill.is-upcoming {
  cursor: default;
  opacity: 0.68;
}

.flow-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3f855f;
}

.flow-title {
  margin: 0;
  font-size: 1.35rem;
}

.flow-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(55, 132, 78, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: #24543d;
}

.flow-steps {
  padding-top: 0.85rem;
}

.flow-step {
  display: none;
}

.flow-step.is-active {
  display: block;
}

.flow-step.is-active[data-step="chat"] {
  display: flex;
  flex-direction: column;
}

.flow [hidden] {
  display: none !important;
}

.flow-lead {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: #1b4f38;
}

.flow-start-lead {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1b4f38;
}

.flow-start-sub {
  margin: 0.55rem 0 0;
  color: #3d6d56;
  line-height: 1.45;
}

.flow-start-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.flow-start-card {
  width: 100%;
  border: 1px solid rgba(55, 132, 78, 0.16);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 244, 0.9));
  box-shadow: 0 12px 24px rgba(24, 74, 47, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.32rem 0.7rem;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.flow-start-card:hover,
.flow-start-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(55, 132, 78, 0.28);
  box-shadow: 0 16px 28px rgba(24, 74, 47, 0.12);
}

.flow-start-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(82, 191, 62, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  grid-row: 1 / span 2;
}

.flow-start-card strong {
  color: #173f2e;
  font-size: 1rem;
}

.flow-start-card > span:not(.flow-start-card-icon):not(.flow-start-badge) {
  color: #456c59;
  font-size: 0.92rem;
  line-height: 1.35;
}

.flow-start-badge {
  align-self: start;
  justify-self: end;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: rgba(82, 191, 62, 0.16);
  color: #1f5b3d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.flow-start-badge--neutral {
  background: rgba(47, 154, 116, 0.12);
  color: #2b6b51;
}

.flow-trust-note {
  margin: 0.95rem 0 0;
  color: #3d6d56;
  font-size: 0.92rem;
  line-height: 1.45;
}

.flow-option-list,
.flow-card-grid {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.55rem;
}

.flow-option-list {
  grid-template-columns: 1fr;
}

.flow-option-list--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-option,
.flow-tile {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(55, 132, 78, 0.18);
  border-radius: 16px;
  padding: 0.78rem 0.88rem;
  background: rgba(255, 255, 255, 0.9);
  color: #183f2f;
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 0.16rem;
  box-shadow: 0 10px 22px rgba(24, 74, 47, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.flow-option strong,
.flow-tile strong {
  color: #163f2f;
  font-size: 0.98rem;
}

.flow-option span,
.flow-tile span {
  color: #476f5b;
  font-size: 0.86rem;
  line-height: 1.35;
}

.flow-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-segmented {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.5rem;
}

.flow-option:hover,
.flow-option:focus-visible,
.flow-tile:hover,
.flow-tile:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(55, 132, 78, 0.3);
  box-shadow: 0 14px 28px rgba(24, 74, 47, 0.12);
}

.flow-option.is-active,
.flow-option[aria-pressed="true"],
.flow-tile.is-active,
.flow-tile[aria-pressed="true"] {
  border-color: rgba(82, 191, 62, 0.58);
  background:
    linear-gradient(135deg, rgba(82, 191, 62, 0.18), rgba(47, 154, 116, 0.1)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(24, 74, 47, 0.13);
}

.flow-grid {
  display: grid;
  gap: 0.62rem;
}

.flow-card {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(55, 132, 78, 0.18);
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(24, 74, 47, 0.12);
  cursor: pointer;
  display: grid;
  gap: 0.2rem;
}

.flow-card strong {
  color: #1b5039;
}

.flow-card span {
  color: #3d6d56;
  font-size: 0.92rem;
}

.flow-block {
  margin-top: 0.8rem;
}

.flow-label {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  color: #2a684b;
}

.flow-stepper {
  margin: 0 0 0.45rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(42, 104, 75, 0.75);
}

.flow-chips {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.flow-chip {
  border: 1px solid rgba(55, 132, 78, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: #1b5039;
  border-radius: 14px;
  padding: 0.68rem 0.82rem;
  font: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(24, 74, 47, 0.1);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.flow-chip--big {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flow-chip:active {
  transform: scale(0.98);
}

.flow-chip.is-active,
.flow-chip[aria-pressed="true"] {
  border-color: rgba(82, 191, 62, 0.5);
  background: linear-gradient(120deg, rgba(82, 191, 62, 0.18), rgba(47, 154, 116, 0.14));
}

.flow-skip {
  margin-top: 0.75rem;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0.6rem 0.2rem 0;
  color: #2a684b;
  text-decoration: underline;
  text-underline-offset: 3px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.flow-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.flow-field {
  display: grid;
  gap: 0.26rem;
  margin-top: 0.65rem;
}

.flow-field span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #2a684b;
}

.flow-field input,
.flow-field select,
.flow-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(55, 132, 78, 0.22);
  padding: 0.72rem 0.78rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
  color: #193f2f;
}

.flow-field textarea {
  resize: vertical;
}

.flow-consent {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.6rem;
  align-items: start;
  color: #315b49;
  font-size: 0.9rem;
}

.flow-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flow-actions {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.flow-actions> :only-child {
  grid-column: 1 / -1;
}

.flow-next,
.flow-back {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(55, 132, 78, 0.2);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.flow-next[disabled],
.flow-back[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.flow-next {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #f9fff7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flow-back {
  background: rgba(255, 255, 255, 0.82);
  color: #24543d;
}

.flow-note {
  margin: 0;
  color: #3d6d56;
}

.flow-selection-summary {
  margin-top: 0.8rem;
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(135deg, rgba(249, 253, 250, 0.96), rgba(239, 248, 243, 0.9));
  border: 1px solid rgba(55, 132, 78, 0.14);
}

.flow-review-card {
  box-shadow: 0 10px 22px rgba(24, 74, 47, 0.06);
}

.flow-summary-list {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.42rem;
}

.flow-summary-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #325f4b;
}

.flow-summary-item span {
  color: #4e7964;
}

.flow-summary-item strong {
  text-align: right;
  color: #1b5039;
}

.flow-inline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.flow-link-btn {
  border: 0;
  background: transparent;
  color: #2a684b;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.flow-booking-summary {
  margin-top: 0.55rem;
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(55, 132, 78, 0.16);
  box-shadow: 0 10px 20px rgba(24, 74, 47, 0.08);
  display: grid;
  gap: 0.16rem;
}

.flow-booking-summary strong {
  color: #1b5039;
}

.flow-booking-summary span {
  font-size: 0.88rem;
  color: #3d6d56;
}

.flow-booking-preview {
  width: 100%;
  margin-top: 0.65rem;
  border: 1px solid rgba(55, 132, 78, 0.18);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 244, 0.92));
  box-shadow: 0 12px 24px rgba(24, 74, 47, 0.08);
  display: grid;
  gap: 0.18rem;
  text-align: left;
  color: #1b5039;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.flow-booking-preview:hover,
.flow-booking-preview:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(55, 132, 78, 0.28);
  box-shadow: 0 16px 28px rgba(24, 74, 47, 0.1);
}

.flow-booking-preview.is-open {
  border-color: rgba(55, 132, 78, 0.34);
  box-shadow: 0 18px 30px rgba(24, 74, 47, 0.12);
}

.flow-booking-preview-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4e7964;
}

.flow-booking-preview strong {
  font-size: 1rem;
  line-height: 1.3;
}

.flow-booking-preview-action {
  font-size: 0.84rem;
  font-weight: 800;
  color: #2a684b;
}

.flow-booking-status {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: #3d6d56;
}

.flow-booking-status[data-tone="error"] {
  color: #a33d13;
}

.flow-booking-status[data-tone="success"] {
  color: #1e6c3a;
}

.flow-booking-status[data-tone="loading"] {
  color: #24543d;
}

.flow-booking-dates {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.flow-booking-calendar {
  margin-top: 0.65rem;
}

.flow-booking-calendar-title {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 800;
  color: #4e7964;
}

.flow-date-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.14rem;
  border-radius: 16px;
  min-width: min(100%, 150px);
}

.flow-date-label {
  font-size: 0.92rem;
  line-height: 1.25;
}

.flow-date-meta {
  font-size: 0.78rem;
  color: #4e7964;
}

.flow-chip.is-active .flow-date-meta,
.flow-chip[aria-pressed="true"] .flow-date-meta {
  color: #1f5b3d;
}

.flow-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.flow-chat {
  margin-top: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(55, 132, 78, 0.16);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  min-height: 240px;
}

.flow.is-chat-step .flow-step.is-active[data-step="chat"] {
  min-height: min(72dvh, 690px);
}

.flow.is-chat-step .flow-chat {
  margin-top: 0.65rem;
  flex: 1 1 auto;
  min-height: clamp(320px, 56dvh, 640px);
}

.flow-chat:empty {
  display: grid;
  place-items: center;
  color: #3d6d56;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem;
}

.flow-chat:empty::before {
  content: "Chat wird geladen...";
}

.flow-chat df-messenger {
  width: 100%;
  height: min(56dvh, 620px);
  display: block;
  position: relative;
  z-index: 1;

  /* Dialogflow Messenger theme variables (v1) */
  --df-messenger-font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --df-messenger-font-color: #16392b;
  --df-messenger-chat-background: rgba(245, 255, 243, 0.92);
  --df-messenger-titlebar-background: linear-gradient(120deg, rgba(82, 191, 62, 0.96), rgba(47, 154, 116, 0.96));
  --df-messenger-titlebar-font-color: #f7fff8;
  --df-messenger-message-user-background: rgba(82, 191, 62, 0.18);
  --df-messenger-message-user-font-color: #16392b;
  --df-messenger-message-bot-background: rgba(255, 255, 255, 0.92);
  --df-messenger-message-bot-font-color: #16392b;
  --df-messenger-input-box-color: rgba(255, 255, 255, 0.92);
  --df-messenger-input-font-color: #16392b;
  --df-messenger-input-placeholder-font-color: rgba(22, 57, 43, 0.55);
}

.flow-chat df-messenger-chat {
  height: 100%;
}


@keyframes m-gradient-shift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 50%;
  }

  25% {
    background-position: 28% 18%, 76% 12%, 48% 52%;
  }

  50% {
    background-position: 42% 34%, 60% 30%, 46% 54%;
  }

  75% {
    background-position: 18% 46%, 86% 48%, 52% 48%;
  }

  100% {
    background-position: 0% 0%, 100% 0%, 50% 50%;
  }
}

@keyframes m-mobile-surface-shift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 50%;
  }

  33% {
    background-position: 62% 18%, 40% 34%, 50% 50%;
  }

  66% {
    background-position: 24% 62%, 78% 58%, 50% 50%;
  }

  100% {
    background-position: 0% 0%, 100% 0%, 50% 50%;
  }
}

@keyframes m-cta-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes m-cta-glow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate3d(10px, -8px, 0) scale(1.06);
    opacity: 0.78;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.6;
  }
}

@keyframes m-bottom-gradient {
  0% {
    background-position: 0% 50%, 0% 42%;
  }

  50% {
    background-position: 100% 50%, 100% 58%;
  }

  100% {
    background-position: 0% 50%, 0% 42%;
  }
}

@keyframes m-bottom-sheen {
  0% {
    transform: translateX(-10%) scaleX(0.98);
    opacity: 0.5;
  }

  50% {
    transform: translateX(10%) scaleX(1.03);
    opacity: 0.74;
  }

  100% {
    transform: translateX(-10%) scaleX(0.98);
    opacity: 0.5;
  }
}

@media (max-width: 960px) and (prefers-reduced-motion: reduce) {

  body:not(.legal-page) .mobile-app,
  .mobile-app::before,
  .mobile-app::after,
  .m-bottom-bar,
  .m-bottom-bar::before {
    animation: none !important;
  }
}

@keyframes m-float-a {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }

  50% {
    transform: translate3d(-36px, 26px, 0) scale(1.18);
    opacity: 0.38;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
}

@keyframes m-float-b {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }

  50% {
    transform: translate3d(34px, -28px, 0) scale(1.2);
    opacity: 0.36;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }
}

@keyframes m-rotator-in {
  0% {
    opacity: 0;
    transform: translateY(0.46em);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 960px) {
  .flow {
    width: calc(100% - 0.75rem);
    bottom: calc(0.25rem + env(safe-area-inset-bottom));
    max-height: calc(100dvh - env(safe-area-inset-bottom) - 0.6rem);
    padding: 0.85rem;
    border-radius: 20px;
  }

  .flow-title {
    font-size: clamp(1.16rem, 6.3vw, 1.4rem);
  }

  .flow.is-chat-step {
    max-height: calc(100dvh - env(safe-area-inset-bottom) - 0.3rem);
  }

  .flow.is-chat-step .flow-step.is-active[data-step="chat"] {
    min-height: calc(100dvh - 12.8rem);
  }

  .flow.is-chat-step .flow-chat {
    min-height: clamp(340px, 60dvh, 720px);
  }

  .flow-chat df-messenger {
    height: min(60dvh, 680px);
  }

  .flow-start-card {
    grid-template-columns: auto 1fr;
  }

  .flow-start-badge {
    justify-self: start;
    grid-column: 2;
  }

  .flow-option-list--compact,
  .flow-two {
    grid-template-columns: 1fr;
  }

  .flow-option,
  .flow-tile {
    min-height: 56px;
    padding: 0.78rem 0.82rem;
  }

  .flow-segmented {
    grid-template-columns: 1fr;
  }

  .flow-actions {
    position: sticky;
    bottom: -0.85rem;
    z-index: 2;
    gap: 0.5rem;
    margin-left: -0.85rem;
    margin-right: -0.85rem;
    margin-bottom: -0.85rem;
    padding: 0.75rem 0.85rem 0.85rem;
    background: linear-gradient(180deg, rgba(244, 252, 246, 0), rgba(244, 252, 246, 0.96) 32%, rgba(244, 252, 246, 0.98));
    backdrop-filter: blur(8px);
  }

  .flow-progress-track {
    gap: 0.38rem;
  }

  .flow-progress-pill {
    flex: 0 0 auto;
    padding: 0.48rem 0.62rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}


@media (min-width: 700px) and (max-width: 960px) {
  .m-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none !important;
  }

  .mobile-app {
    animation: none !important;
  }

  .mobile-app::before,
  .mobile-app::after {
    animation: none !important;
  }

  .m-cta.m-cta-ai::after {
    animation: none !important;
  }

  * {
    animation: none !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Mobile Hero Overlay Info */
.m-hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
}

.m-hero-image :is(img, video) {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-loop-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  background: #dde8dc;
  transition: opacity 420ms ease;
}

.hero-loop-video::-webkit-media-controls {
  display: none !important;
}

.hero-media.is-video-ready .hero-loop-video {
  opacity: 1;
}

.hero-media.is-video-ready .hero-poster {
  opacity: 0;
}

.m-hero-info {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: var(--radius-m, 12px);
  /* Fallback to 12px if var undefined in scope */
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  /* Kept blur as it looks better than plain white */
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* Subtle border for glass effect */
  z-index: 10;
  text-align: left;
}

.m-hero-info strong {
  display: block;
  color: #1f5538;
  /* Match desktop color */
  font-weight: 700;
  line-height: 1.2;
  font-size: 0.82rem;
  /* Adjusted for mobile legibility */
}

.m-hero-info .hero-note-text {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.86rem;
  /* Match desktop size */
  color: #3d6d56;
  line-height: 1.2;
}


/* Header Icon Link (Phone) */
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /* Base size */
  border-radius: 50%;
  color: #1f5538;
  background: rgba(83, 188, 67, 0.1);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.icon-link:hover {
  background: rgba(83, 188, 67, 0.2);
  transform: scale(1.05);
}


/* Header Region Badges */
.header-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
  /* Space before phone icon */
  padding-right: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  /* Subtle separator */
}

.header-badges img {
  height: 38px;
  /* Slightly bigger */
  width: auto;
  display: block;
  filter: grayscale(0.2);
  opacity: 0.9;
  transition: filter 0.2s, transform 0.2s, opacity 0.2s;
}

.header-badges img:nth-child(2) {
  height: 46px;
  /* Brandenburg badge bigger */
}

.header-badges img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 960px) {
  .header-badges {
    display: flex;
    /* Show on mobile */
    gap: 6px;
    margin-right: 8px;
  }

  .header-badges img {
    height: 24px;
    /* Smaller size for mobile */
  }
}

/* Benefits Section (New) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(82, 191, 62, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f9a74;
  margin-bottom: 0.5rem;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #1b5039;
}

.benefit-card p {
  color: #2d5f49;
  line-height: 1.6;
  margin: 0;
}

.benefit-cta {
  margin-top: 0.75rem;
  padding: 0.65rem 1.2rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #52bf3e, #2f9a74);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.benefit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(47, 154, 116, 0.35);
}

.benefit-cta:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.flow-next[disabled],
.flow-next[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  filter: saturate(0.7);
}
/* ============================================================
   Prototype homepage — consolidated 1:1 pass (2026-06-12).
   Single source of truth for the redesigned desktop homepage;
   replaces all earlier prototype patch layers.
   ============================================================ */
:root {
  --proto-text: #1c3a2b;
  --proto-muted: #5b7568;
  --proto-green: #2f9e41;
  --proto-card-border: rgba(228, 239, 224, 0.9);
  --proto-shadow: 0 16px 40px rgba(34, 90, 52, 0.07);
}

body {
  background:
    radial-gradient(640px 420px at 100% 0%, rgba(223, 244, 213, 0.5), transparent 70%),
    radial-gradient(560px 380px at 0% 26%, rgba(226, 245, 217, 0.45), transparent 72%),
    linear-gradient(180deg, #fdfefc 0%, #f4faf1 30%, #f3f9f0 78%, #fcfdfb 100%);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  padding: 0 20px;
}
.topbar {
  width: min(1120px, calc(100vw - 40px));
  min-height: 64px;
  padding: 10px 12px 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(235, 244, 232, 0.8);
  box-shadow: 0 4px 18px rgba(26, 82, 42, 0.05);
  backdrop-filter: blur(14px);
  transition: background-color 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease;
}
.site-header.is-scrolled .topbar {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(26, 82, 42, 0.10), 0 1px 0 rgba(34, 90, 52, 0.06);
  border-color: rgba(210, 232, 212, 0.9);
}
.brand-wrap { padding-left: 0; }
.brand img { height: 28px; }
.topnav { gap: 30px; }
.topnav a { color: #21402f; font-size: 13.5px; font-weight: 700; }
.icon-link {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--proto-green); border: 1px solid rgba(47, 158, 65, 0.3); border-radius: 999px;
  background: #fff;
}
.header-actions { gap: 10px; }

/* ---------- Buttons ---------- */
.mini-cta, .cta {
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #43b049, #2f9c3c);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 26px rgba(44, 155, 58, 0.25);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: inherit;
}
.mini-cta { padding: 0 24px; font-size: 13.5px; }
.cta { padding: 0 7px 0 24px; font-size: 14px; cursor: pointer; }
.cta-round {
  width: 31px; height: 31px; border-radius: 999px;
  background: #1f7c2e; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.cta-round--sm { width: 26px; height: 26px; }

/* ---------- Page scaffolding ---------- */
.layout.prototype-page {
  width: min(1120px, calc(100vw - 64px));
  margin: 90px auto 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.prototype-page .section { padding: 0; margin: 0; width: 100%; }
.prototype-page h1, .prototype-page h2, .prototype-page h3 {
  color: var(--proto-text);
  font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0;
}
.prototype-page p { color: var(--proto-muted); font-size: 15px; line-height: 1.75; }
.prototype-page .eyebrow {
  margin-bottom: 20px;
  color: var(--proto-green);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  display: flex; align-items: center; gap: 10px;
}
.prototype-page .eyebrow::after {
  content: "\2726";
  color: #9fd28b;
  font-size: 13px;
  letter-spacing: 0;
}
.prototype-page .reveal,
.prototype-page .reveal.show { opacity: 1 !important; transform: none !important; }
.ki-launch { display: none !important; }

/* ---------- Hero ---------- */
.proto-hero {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  align-items: flex-start;
  gap: 0;
  min-height: 640px;
  position: relative;
}
.proto-hero .hero-copy { max-width: 500px; padding-top: 84px; position: relative; z-index: 2; }
.proto-hero h1 {
  font-size: 47px;
  line-height: 1.17;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.proto-hero .hero-copy > p:not(.eyebrow) {
  font-size: 15px; line-height: 1.7; margin-bottom: 30px; color: #587164;
}
.proto-hero .hero-actions { display: flex; align-items: center; gap: 32px; margin-bottom: 46px; }
.phone-link { display: inline-flex; align-items: center; gap: 12px; color: #1c3a2b; font-size: 14.5px; font-weight: 800; }
.phone-link svg { color: var(--proto-green); }
.trust-bar { display: flex; align-items: center; gap: 16px; color: #5b7568; font-size: 13px; white-space: nowrap; }
.trust-bar strong { color: #1c3a2b; }
.trust-stars { color: #f3a712; font-size: 15px; letter-spacing: 2.5px; line-height: 1; }
.trust-sep { width: 4px; height: 4px; border-radius: 999px; background: rgba(28, 73, 48, 0.25); }

.proto-hero-visual {
  position: relative;
  min-height: 640px;
  z-index: 1;
  margin-right: calc((100vw - min(1120px, 100vw - 64px)) / -2);
  overflow: hidden;
}
.proto-hero-visual picture { position: absolute; inset: 0; display: block; }
.proto-hero-visual .hero-poster {
  position: absolute;
  right: 24px;
  top: 28px;
  width: min(790px, 58vw);
  height: auto;
  object-fit: contain;
  object-position: right top;
  border: 0; border-radius: 0; box-shadow: none;
}
.proto-hero .hero-info {
  position: absolute;
  z-index: 3;
  left: auto;
  right: 250px;
  bottom: 56px;
  width: max-content;
  min-width: 295px;
  padding: 16px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(235, 244, 232, 0.95);
  box-shadow: 0 22px 48px rgba(34, 74, 46, 0.14);
  backdrop-filter: blur(6px);
}
.clock-dot {
  color: var(--proto-green);
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1.5px solid #d7eed3;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3faf0;
  box-shadow: inset 0 0 0 1px rgba(50, 165, 66, 0.06);
  position: relative;
}
.clock-dot svg { display: none; }
.clock-dot::before,
.clock-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 999px;
  transform-origin: 0 50%;
}
.clock-dot::before {
  width: 2px;
  height: 9px;
  transform: translate(-50%, -100%);
}
.clock-dot::after {
  width: 8px;
  height: 2px;
  transform: translate(0, -50%) rotate(38deg);
}
.hero-info strong { display: block; color: #1c3a2b; font-size: 13px; margin-bottom: 3px; }
.hero-info small { display: block; color: #75897c; font-size: 11px; font-weight: 600; }

/* ---------- Claim ("Unser Anspruch") ---------- */
/* id selector needed to out-rank the legacy #vorteile panel rule */
#vorteile.claim-section,
.claim-section {
  display: grid; grid-template-columns: 295px minmax(0, 1fr); gap: 42px; align-items: stretch;
  padding: 0; background: transparent; border: 0; border-radius: 0;
}
.claim-copy { padding-top: 26px; }
.claim-copy h2 { font-size: 30px; line-height: 1.27; font-weight: 700; margin-bottom: 24px; }
.claim-copy p { font-size: 14px; max-width: 270px; }
.signature {
  display: block; margin-top: 44px;
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: 31px; font-weight: 600; color: #27513c;
  transform: rotate(-3deg); transform-origin: left center;
}
.claim-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.claim-card, .service-card, .final-checks, .metric {
  background: #fff;
  border: 1px solid var(--proto-card-border);
  box-shadow: var(--proto-shadow);
}
.claim-card {
  border-radius: 16px;
  min-height: 360px;
  padding: 30px 20px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.claim-illustration {
  width: 104px; height: 88px;
  object-fit: contain; display: block;
  margin: 0 auto 18px;
}
.claim-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 13px; }
.claim-card p { font-size: 12.5px; line-height: 1.8; color: var(--proto-muted); }

/* ---------- Process banner ---------- */
.proto-process {
  position: relative;
  border-radius: 26px;
  background:
    radial-gradient(320px 240px at 58% 34%, rgba(120, 186, 110, 0.22), transparent 70%),
    linear-gradient(118deg, #2e6a3c 0%, #275c34 42%, #16402a 100%);
  color: #fff;
  min-height: 388px;
  box-shadow: 0 30px 70px rgba(18, 71, 43, 0.22);
}
.process-copy { position: relative; z-index: 2; padding: 50px 56px 46px; max-width: 700px; }
.proto-process h2 { color: #fff; font-size: 30px; line-height: 1.3; font-weight: 700; margin-bottom: 44px; }
.proto-process .timeline {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; margin: 0; padding: 0; max-width: 640px;
}
.proto-process .timeline li {
  color: #d8ead8; min-width: 0;
  /* neutralize legacy timeline card styling */
  background: transparent; border: 0; box-shadow: none; padding: 0;
  display: block; height: auto; border-radius: 0;
}
.proto-process .timeline li:not(:last-child)::after { content: none; }
.proto-process .timeline h3 { display: block; margin-top: 0; }
.step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.proto-process .step-number {
  color: #a8d98e; font-weight: 800; font-size: 13px; letter-spacing: 0.04em;
  position: static; display: inline-flex; margin: 0;
  background: transparent; padding: 0; min-width: 0; height: auto; border-radius: 0;
}
.proto-process .timeline li:not(:last-child) .step-head::after {
  content: ""; flex: 1 1 auto; height: 0;
  border-top: 2px dotted rgba(168, 217, 142, 0.5);
  margin-right: -22px;
}
.step-icon {
  width: 46px; height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #e7f5e0;
  margin-bottom: 18px;
}
.proto-process h3 { color: #fff; font-size: 16.5px; font-weight: 700; margin-bottom: 10px; }
.proto-process p { color: rgba(224, 240, 222, 0.92); font-size: 12.5px; line-height: 1.7; max-width: 190px; }

.process-garden {
  position: absolute; right: -44px; top: -42px;
  width: 560px; height: 430px;
  z-index: 1; pointer-events: none;
}
.process-garden > img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: right bottom;
  display: block;
}

/* ---------- Services ---------- */
.proto-services {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.proto-services > .eyebrow { margin-bottom: 8px; }
.proto-services h2 { font-size: 26px; font-weight: 800; margin: 0 0 28px 0; color: var(--proto-heading); }
.proto-services .services-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)) 1.28fr;
  gap: 14px; align-items: stretch;
}
.service-card {
  border-radius: 14px;
  padding: 20px 13px 18px;
  text-align: center;
  min-height: 295px;
}
.service-illustration-img {
  display: block; width: 92px; height: 76px;
  object-fit: contain; object-position: center;
  margin: 0 auto 14px;
}
.service-card h3 { font-size: 13.5px; font-weight: 700; margin-bottom: 11px; }
.service-card p { font-size: 11.5px; line-height: 1.75; color: var(--proto-muted); }
.service-more {
  border-radius: 18px;
  padding: 28px 24px;
  background: linear-gradient(155deg, #2e6a3c, #16402a);
  color: #fff;
  box-shadow: 0 24px 54px rgba(17, 63, 40, 0.25);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.service-more-art {
  display: block;
  width: 135px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}
.service-more h3 { color: #fff; font-size: 17px; line-height: 1.3; margin: 14px 0 12px; }
.service-more p { color: rgba(255, 255, 255, 0.78); font-size: 12px; line-height: 1.7; }
.service-more a {
  margin-top: 22px; min-height: 40px; padding: 0 6px 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 999px; background: linear-gradient(180deg, #43b049, #2f9c3c);
  color: #fff; font-size: 12px; font-weight: 800;
  box-shadow: 0 12px 24px rgba(10, 40, 22, 0.3);
}

/* ---------- KI band ---------- */
.ai-band {
  border-radius: 24px;
  background: linear-gradient(115deg, #e7f3df 0%, #eef7e8 60%, #f2f9ee 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px rgba(28, 82, 45, 0.08);
  display: grid; grid-template-columns: 300px minmax(0, 1fr) 300px;
  gap: 38px; align-items: center;
  padding: 36px 30px 36px 34px;
  min-height: 330px;
  position: relative;
}
.ai-band::after {
  /* small watercolor sprig decoration (reuses footer leaves crop) */
  content: ""; position: absolute; right: 340px; bottom: 6px;
  width: 86px; height: 64px;
  background: url("./assets/images/generated-redesign-v2/footer-leaves-v3.png") center / contain no-repeat;
  opacity: 0.85; pointer-events: none;
}
.phone-card {
  position: relative;
  width: 300px; height: 300px;
}
.ai-phone-art {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block;
}
.ki-badge {
  position: absolute; top: 18px; right: 4px;
  width: 76px; height: 76px; border-radius: 999px;
  background: #34953f;
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; line-height: 1.15;
  box-shadow: 0 10px 22px rgba(20, 70, 35, 0.28);
}
.ki-badge strong { font-size: 19px; font-weight: 800; }
.ai-copy .eyebrow { margin-bottom: 12px; }
.ai-copy h2 { font-size: 27px; line-height: 1.3; font-weight: 700; margin-bottom: 16px; }
.ai-copy ul { list-style: none; margin: 0; padding: 0; }
.ai-copy li, .final-checks li {
  position: relative; padding-left: 30px; margin: 11px 0;
  color: #2e4d3e; font-size: 13.5px; font-weight: 600;
}
.ai-copy li::before, .final-checks li::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 999px;
  border: 1.6px solid var(--proto-green);
}
.ai-copy li::after, .final-checks li::after {
  content: ""; position: absolute; left: 5.5px; top: 5.5px;
  width: 7px; height: 4px;
  border-left: 1.8px solid var(--proto-green);
  border-bottom: 1.8px solid var(--proto-green);
  transform: rotate(-45deg);
}
.ai-copy .cta { margin-top: 22px; }
.metric-stack { display: grid; gap: 14px; }
.metric { border-radius: 14px; padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.metric-ico { color: var(--proto-green); flex: 0 0 auto; margin-top: 2px; }
.metric-body { display: grid; gap: 3px; }
.metric-body strong { color: #1c3a2b; font-family: "Outfit", sans-serif; font-size: 24px; font-weight: 800; line-height: 1.05; }
.metric-body span { color: var(--proto-muted); font-size: 12px; font-weight: 600; }

/* ---------- FAQ ---------- */
.proto-faq {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0 72px;
  align-items: start;
}
.faq-head { position: sticky; top: 100px; }
.faq-head .eyebrow { margin-bottom: 10px; }
.proto-faq h2 { font-size: 30px; font-weight: 800; margin: 0; color: var(--proto-heading); line-height: 1.25; }
.faq-grid { grid-column: 2; border-top: 1px solid rgba(34, 90, 52, 0.1); }
.faq-item {
  border-bottom: 1px solid rgba(34, 90, 52, 0.1);
}
.faq-item summary {
  padding: 18px 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--proto-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--proto-green);
  flex-shrink: 0;
  transition: transform 0.22s ease;
  line-height: 1;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item > p {
  margin: 0 !important;
  padding: 0 48px 20px 0 !important;
  font-size: 13.5px !important;
  line-height: 1.75 !important;
  color: var(--proto-muted) !important;
}

/* ---------- Final CTA ---------- */
.final-cta {
  border-radius: 24px;
  background: linear-gradient(110deg, #eef7e8, #f6fbf2);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 22px 56px rgba(28, 82, 45, 0.07);
  display: grid; grid-template-columns: 300px minmax(0, 1fr) 300px;
  gap: 36px; align-items: center;
  padding: 14px 34px;
  overflow: hidden;
  min-height: 245px;
}
.worker-illustration { align-self: end; width: 330px; height: 230px; background: none; }
.worker-illustration img {
  display: block !important;
  width: 100%; height: 100%;
  object-fit: contain; object-position: left bottom;
}
.final-copy h2 { font-size: 25px; line-height: 1.3; font-weight: 700; margin-bottom: 12px; }
.final-copy p { font-size: 13px; margin-bottom: 22px; }
.final-checks { list-style: none; margin: 0; padding: 22px 26px; border-radius: 16px; }
.final-checks li { margin: 13px 0; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  width: min(1120px, calc(100vw - 64px));
  margin: 8px auto 0;
  padding: 30px 0 56px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr;
  gap: 40px;
  background: transparent;
}
.footer-logo { height: 40px; }
.footer-brand p { margin-top: 14px; color: var(--proto-muted); font-size: 13px; line-height: 1.7; }
.footer-contact, .footer-legal { padding-top: 10px; }
.footer-contact p, .footer-legal p { margin: 0 0 12px; }
.footer-contact a, .footer-legal a {
  color: #2e4d3e; font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.footer-contact svg { color: var(--proto-green); }
.footer-leaves {
  position: absolute; right: -10px; bottom: 6px;
  width: 140px; height: auto;
  opacity: 0.85; pointer-events: none;
  mix-blend-mode: multiply;
}

/* ---------- Visibility switching ---------- */
@media (min-width: 961px) {
  .mobile-app { display: none; }
  html, body { overflow-x: hidden; }
}

/* ---------- Mobile / narrow viewports ---------- */
@media (max-width: 960px) {
  body:not(.legal-page) .mobile-app { display: none !important; }
  body:not(.legal-page) .backdrop { display: block; }
  body:not(.legal-page) .layout.prototype-page { display: flex !important; }
  body:not(.legal-page) .footer { display: grid !important; }
  .site-header { display: block !important; top: 8px; padding: 0 8px; }
  .topbar {
    width: calc(100vw - 16px);
    min-height: 56px;
    display: flex;
    justify-content: space-between;
    border-radius: 999px;
    padding: 8px 8px 8px 16px;
  }
  .topbar .brand-wrap { width: auto; }
  .topbar .brand img { height: 22px; }
  .topbar .code-line, .topnav, .icon-link, .menu-toggle { display: none; }
  .header-actions { margin-left: auto; }
  .mini-cta { min-height: 38px; padding: 0 14px; font-size: 11.5px; }

  .layout.prototype-page { width: min(100% - 24px, 560px); margin: 20px auto 0; gap: 30px; }
  .proto-hero { grid-template-columns: 1fr; min-height: 0; gap: 14px; }
  .proto-hero .hero-copy { max-width: none; padding-top: 10px; }
  .proto-hero h1 { font-size: clamp(32px, 9.6vw, 44px); }
  .proto-hero .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 22px; }
  .proto-hero .cta { min-height: 48px; justify-content: center; }
  .phone-link {
    justify-content: center; min-height: 44px;
    border: 1px solid rgba(47, 158, 65, 0.25); border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
  }
  .trust-bar { white-space: normal; flex-wrap: wrap; gap: 8px 12px; font-size: 11px; margin-bottom: 16px; }
  .trust-sep { display: none; }
  .proto-hero-visual { min-height: 0; margin-right: 0; }
  .proto-hero-visual picture { position: relative; inset: auto; }
  .proto-hero-visual .hero-poster {
    position: static; width: 100%; height: auto;
    aspect-ratio: 4 / 3; object-fit: cover; object-position: center top;
    border-radius: 16px;
  }
  .proto-hero .hero-info { right: 10px; bottom: 10px; min-width: 0; padding: 10px 14px; }
  .hero-info small { display: none; }

  #vorteile.claim-section,
  .claim-section { grid-template-columns: 1fr; gap: 20px; }
  .claim-copy { padding-top: 0; }
  .claim-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .claim-card { min-height: 0; padding: 18px 12px 16px; }
  .claim-illustration { width: 64px; height: 56px; margin-bottom: 10px; }
  .claim-card h3 { font-size: 12.5px; margin-bottom: 8px; }
  .claim-card p { font-size: 10.5px; line-height: 1.6; }

  .proto-process { min-height: 0; }
  .process-copy { padding: 26px 22px; max-width: none; }
  .proto-process h2 { font-size: 24px; margin-bottom: 26px; }
  .proto-process .timeline { grid-template-columns: 1fr; gap: 14px; max-width: none; }
  .proto-process .timeline li:not(:last-child) .step-head::after { display: none; }
  .proto-process p { max-width: none; }
  .process-garden {
    display: block; position: relative; right: auto; top: auto;
    width: 100%; height: 250px; margin-top: -26px;
  }
  .process-garden > img { object-position: center top; }

  .proto-services { padding: 22px 14px 14px; }
  .proto-services .services-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: 0; display: grid; grid-template-columns: 84px 1fr;
    column-gap: 14px; align-items: center; text-align: left; padding: 14px;
  }
  .service-illustration-img { grid-row: 1 / span 2; width: 78px; height: 62px; margin: 0; }
  .service-card h3 { margin: 0 0 5px; }
  .service-more { align-items: flex-start; padding: 22px; }

  .ai-band { grid-template-columns: 1fr; padding: 22px 18px; gap: 20px; }
  .ai-band::after { display: none; }
  .phone-card { width: 210px; height: 230px; margin: 0 auto; }
  .ki-badge { width: 62px; height: 62px; top: 2px; right: -22px; }
  .ki-badge strong { font-size: 16px; }
  .metric-stack { gap: 10px; }

  .proto-faq { grid-template-columns: 1fr; gap: 24px 0; }
  .faq-head { position: static; }
  .faq-grid { grid-column: 1; }
  .proto-faq h2 { font-size: 24px; }

  .final-cta { grid-template-columns: 1fr; padding: 20px 18px; gap: 16px; min-height: 0; }
  .worker-illustration {
    display: block; order: -1;
    align-self: center; margin: 0 auto;
    width: min(248px, 76%); height: auto;
  }
  .worker-illustration img { width: 100%; height: auto; object-fit: contain; }

  .footer {
    width: min(100% - 24px, 560px);
    grid-template-columns: 1fr 1fr;
    column-gap: 20px; row-gap: 16px;
    padding: 18px 0 calc(28px + env(safe-area-inset-bottom));
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact, .footer-legal { padding-top: 0; }
  .footer-leaves { width: 92px; right: 0; bottom: 0; opacity: 0.7; }
}
