/* ============================================================
   KOB Abbruch – Website
   Einfache statische Seite: HTML + CSS + JS + PHP
   FARBEN ÄNDERN: Werte unten in den CSS-Variablen ersetzen.
   ============================================================ */

:root {
  --primary: #F09010;
  --primary-foreground: #1A1A1A;
  --primary-soft: rgba(240, 144, 16, 0.12);
  --primary-softer: rgba(240, 144, 16, 0.06);

  --green: #407020;
  --green-soft: rgba(64, 112, 32, 0.14);

  --background: #FFFFFF;
  --surface: #F7F7F8;
  --surface-2: #EFEFF1;
  --dark: #F4F4F5;
  --darker: #EFEFF2;

  --foreground: #1A1A1A;
  --muted: #5B5B60;

  --border: #E4E4E7;
  --border-light: rgba(0, 0, 0, 0.10);

  --destructive: #E5484D;

  --radius: 16px;
  --radius-sm: 12px;
  --radius-md: 10px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;

  --max-width: 1200px;
  --nav-height: 88px;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/Inter-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/Inter-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/Inter-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/Inter-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/Inter-ExtraBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../assets/fonts/SpaceGrotesk-Variable.ttf') format('truetype');
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

section {
  padding: 6rem 0;
}

.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
}

.section-title .accent {
  color: var(--primary);
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.text-muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #CC7A0E;
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.btn-ghost {
  background-color: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--foreground);
}

.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s, box-shadow 0.3s;
  background-color: transparent;
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__logo img {
  height: 80px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  transition: color 0.2s;
  background: none;
  border: none;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__cta {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
}

.nav__cta:hover {
  background-color: #CC7A0E;
}

.nav__burger {
  display: inline-flex;
  background: none;
  border: none;
  color: var(--foreground);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border-light);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a,
.nav__mobile button {
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  padding: 0.25rem 0;
}

.nav__mobile a:hover,
.nav__mobile button:hover {
  color: var(--primary);
}

.nav__mobile .btn {
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
  .nav__links {
    display: flex;
  }
  .nav__burger {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--darker);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45));
}

.hero__content {
  position: relative;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(240, 144, 16, 0.3);
  background: var(--primary-softer);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.75rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.hero__title .accent {
  color: var(--primary);
}

.hero__text {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__trust .tick {
  color: var(--primary);
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Quiz / Formular ---------- */
.quiz-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.quiz-progress__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.quiz-progress__bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.quiz-progress__fill {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.3s;
}

.quiz-step {
  flex: 1;
  animation: quizFade 0.25s ease;
}

@keyframes quizFade {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.4rem;
}

.quiz-step .quiz-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.quiz-option:hover {
  border-color: rgba(240, 144, 16, 0.3);
  background-color: var(--surface-2);
}

.quiz-option.selected {
  border-color: var(--primary);
  background-color: var(--primary-soft);
  color: var(--foreground);
}

.quiz-option .tick {
  margin-left: auto;
  color: var(--primary);
  flex-shrink: 0;
}

.quiz-input {
  width: 100%;
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  font-size: 1.05rem;
  padding: 0.9rem 1rem;
  height: 3.25rem;
  font-family: inherit;
}

.quiz-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-softer);
}

textarea.quiz-input {
  height: auto;
  min-height: 90px;
  resize: vertical;
}

.quiz-field-error {
  color: var(--destructive);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.quiz-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
  flex: 1;
}

.quiz-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.quiz-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.quiz-success p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 26rem;
  margin-bottom: 2rem;
}

.quiz-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: none;
}

.quiz-feedback.show {
  display: block;
}

.quiz-feedback.error {
  background: rgba(229, 72, 77, 0.12);
  color: #f0a0a3;
  border: 1px solid rgba(229, 72, 77, 0.3);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: rgba(240, 144, 16, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(240, 144, 16, 0.06);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Warum wir ---------- */
.whyus {
  position: relative;
  background-color: var(--darker);
  overflow: hidden;
}

.whyus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.whyus__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.whyus__text {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.whyus__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.whyus__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whyus__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whyus__item span {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}

.whyus__media {
  position: relative;
}

.whyus__media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

@media (min-width: 992px) {
  .whyus__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Ablauf ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.process-card {
  position: relative;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.process-card:hover {
  border-color: rgba(240, 144, 16, 0.4);
}

.process-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1rem;
}

.process-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- Galerie ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
  }
}

/* ---------- Kontakt ---------- */
.contact {
  background-color: var(--darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.contact-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
}

.contact-card__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 1rem;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

@media (min-width: 992px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--darker);
  border-top: 1px solid var(--border-light);
}

.footer__cta {
  border-bottom: 1px solid var(--border-light);
}

.footer__cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.footer__cta h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.footer__cta h3 .accent {
  color: var(--primary);
}

.footer__cta p {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}

.footer__brand img {
  height: 96px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  max-width: 26rem;
  margin-bottom: 1.5rem;
}

.footer__brand li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.footer__brand li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer__col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer__col li {
  margin-bottom: 0.6rem;
}

.footer__col a,
.footer__col button {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.footer__col a:hover,
.footer__col button:hover {
  color: var(--primary);
}

.footer__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer__bottom p {
  color: rgba(0, 0, 0, 0.45);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  color: rgba(0, 0, 0, 0.5);
}

.footer__bottom-links a:hover {
  color: rgba(0, 0, 0, 0.75);
}

@media (min-width: 768px) {
  .footer__cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer__grid {
    grid-template-columns: 5fr 3fr 4fr;
  }
  .footer__bottom-inner {
    flex-direction: row;
  }
}

/* ---------- Rechtliches (Impressum / Datenschutz) ---------- */
.legal-page {
  background-color: var(--background);
}

.legal-header {
  border-bottom: 1px solid var(--border);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.legal-header__logo img {
  height: 72px;
  width: auto;
}

.legal-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-header__back:hover {
  color: var(--primary);
}

.legal-main {
  padding: 3rem 1rem;
  max-width: 48rem;
}

.legal-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.legal-content section {
  padding: 0;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.legal-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.legal-footer p {
  color: var(--muted);
}

.legal-footer__inner div {
  display: flex;
  gap: 1.5rem;
}

.legal-footer__inner span {
  color: var(--foreground);
}

.legal-footer__inner a {
  color: var(--muted);
}

.legal-footer__inner a:hover {
  color: var(--primary);
}

@media (min-width: 640px) {
  .legal-footer__inner {
    flex-direction: row;
  }
}

/* ---------- Hilfsklassen ---------- */
.visually-hidden,
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.legal-list li {
  color: var(--muted);
  margin-bottom: 0.25rem;
}

/* ---------- Logo-Farben: Grün sichtbar einsetzen ---------- */
.service-card__icon,
.process-icon,
.whyus__check,
.contact-card__icon {
  background: var(--green-soft);
  color: var(--green);
}

.hero__badge {
  border-color: rgba(64, 112, 32, 0.4);
  background: var(--green-soft);
  color: var(--green);
}

.whyus__title .accent {
  color: var(--green);
}







