/* =========================================
   PhysioMobil Regenstauf – Main Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #1B5C38;
  --green-dark:   #113a23;
  --green-hover:  #165030;
  --green-light:  rgba(27,92,56,0.07);
  --green-mid:    rgba(27,92,56,0.12);
  --green-border: rgba(27,92,56,0.18);
  --white:        #ffffff;
  --text:         #1a1a1a;
  --text-muted:   rgba(26,26,26,0.65);
  --border:       rgba(0,0,0,0.09);
  --bg-light:     #f7f9f7;
  --radius-xl:    1.25rem;
  --radius-full:  9999px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.13);
  --transition:   all .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif { font-family: 'DM Serif Display', serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Utilities --- */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  height: 3rem;
  padding: 0 2rem;
  border-radius: var(--radius-full);
  background: var(--green);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green-hover); border-color: var(--green-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  height: 3rem;
  padding: 0 2rem;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--green);
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--green-light); transform: translateY(-1px); }

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.navbar__logo img {
  height: 2.5rem;
  width: auto;
}

.navbar__logo-text { display: flex; flex-direction: column; }
.navbar__logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
}
.navbar__logo-sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  opacity: .75;
  margin-top: .18rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.navbar__links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(26,26,26,.75);
  transition: color .18s;
}
.navbar__links a:hover { color: var(--green); }

.navbar__cta { display: flex; align-items: center; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: .5rem;
  cursor: pointer;
  padding: .5rem;
}
.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 1rem 1.5rem 1.5rem;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(26,26,26,.8);
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .18s;
}
.navbar__mobile a:last-of-type { border-bottom: none; }
.navbar__mobile a:hover { color: var(--green); }
.navbar__mobile .btn-primary { width: 100%; margin-top: 1rem; }

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 5rem 0 6rem;
}

.hero__glow {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(27,92,56,.04);
  filter: blur(60px);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green-border);
  background: var(--green-light);
  border-radius: var(--radius-full);
  padding: .3rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero__services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}
.hero__services .dot { color: var(--green); font-weight: 700; }

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}
.hero__trust-icon svg { width: .85rem; height: .85rem; stroke: var(--green); }

.hero__image-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero__card {
  position: absolute;
  bottom: 1.5rem;
  left: -2rem;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: .875rem 1.1rem;
  box-shadow: var(--shadow-md);
  width: 280px;
}
.hero__card-inner { display: flex; align-items: center; gap: .9rem; }
.hero__card-avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.hero__card-avatar img { width: 2rem; height: 2rem; object-fit: contain; }
.hero__card-name { font-weight: 700; font-size: .95rem; color: var(--text); line-height: 1.2; }
.hero__card-role { font-size: .72rem; color: var(--text-muted); margin-top: .15rem; line-height: 1.3; }

/* ===========================================
   LEISTUNGEN
   =========================================== */
.leistungen {
  padding: 5rem 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--green);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.leistungen__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.leistungen__card:hover { box-shadow: var(--shadow-md); }

.leistungen__icon {
  width: 3rem; height: 3rem;
  border-radius: .875rem;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.leistungen__icon svg { width: 1.4rem; height: 1.4rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.leistungen__card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: .65rem;
}
.leistungen__card p {
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================================
   WARUM PHYSIOMOBIL
   =========================================== */
.warum {
  padding: 5rem 0;
  background: var(--white);
}

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

.warum__text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--green);
  margin-bottom: 2.5rem;
}

.warum__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}

.warum__benefit-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
  flex-shrink: 0;
}
.warum__benefit-icon svg { width: 1.1rem; height: 1.1rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.warum__benefit h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.warum__benefit p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.warum__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
  position: relative;
}
.warum__image img { width: 100%; height: 100%; object-fit: cover; }
.warum__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,92,56,.04);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ===========================================
   HAUSBESUCHE
   =========================================== */
.hausbesuche {
  padding: 6rem 0;
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hausbesuche::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.hausbesuche__inner { position: relative; z-index: 1; }

.hausbesuche__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  padding: .35rem 1.1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hausbesuche__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.hausbesuche__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  max-width: 680px;
  margin-bottom: 3rem;
}

.hausbesuche__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hausbesuche__card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}
.hausbesuche__card-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: rgba(255,255,255,.25);
  margin-bottom: .75rem;
  line-height: 1;
}
.hausbesuche__card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.hausbesuche__card p { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.65; }

.hausbesuche__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 2rem;
}
.hausbesuche__check {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 500;
  font-size: .95rem;
  color: var(--white);
}
.hausbesuche__check-icon {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hausbesuche__check-icon svg { width: .85rem; height: .85rem; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ===========================================
   EINSATZGEBIET
   =========================================== */
.einsatzgebiet {
  padding: 5rem 0;
  background: var(--bg-light);
}

.einsatzgebiet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.einsatzgebiet__map {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.einsatzgebiet__map iframe { width: 100%; height: 100%; border: none; }

.einsatzgebiet__info {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.einsatzgebiet__info-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.einsatzgebiet__info-title svg { width: 1.4rem; height: 1.4rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.einsatzgebiet__info-title h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--green); }

.einsatzgebiet__list { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.einsatzgebiet__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
}
.einsatzgebiet__list li::before {
  content: '';
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.einsatzgebiet__note {
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: .875rem;
  padding: 1.1rem 1.4rem;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* ===========================================
   KONTAKT
   =========================================== */
.kontakt {
  padding: 5rem 0;
  background: var(--white);
}

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.kontakt__info {
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.kontakt__info-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.kontakt__info-header img { height: 3rem; width: auto; }
.kontakt__info-name { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--green); line-height: 1; margin-bottom: .25rem; }
.kontakt__info-role { font-size: .875rem; color: var(--text-muted); }

.kontakt__details { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; flex-grow: 1; }
.kontakt__detail { display: flex; align-items: flex-start; gap: 1rem; }
.kontakt__detail svg { width: 1.3rem; height: 1.3rem; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: .1rem; flex-shrink: 0; }
.kontakt__detail-label { font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: .15rem; }
.kontakt__detail-value { font-size: .9rem; color: var(--text-muted); }
.kontakt__detail-value a { color: var(--text-muted); transition: color .18s; }
.kontakt__detail-value a:hover { color: var(--green); }

.kontakt__info-footer {
  border-top: 1px solid var(--green-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.kontakt__qr { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.kontakt__qr-wrap { background: var(--white); border-radius: .75rem; padding: .5rem; box-shadow: var(--shadow-sm); }
.kontakt__qr-wrap img { width: 4.5rem; height: 4.5rem; object-fit: contain; }
.kontakt__qr span { font-size: .7rem; font-weight: 500; color: var(--text-muted); text-align: center; line-height: 1.4; }

.kontakt__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.kontakt__form h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--green); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  resize: vertical;
}
.form-group input { height: 3rem; }
.form-group textarea { min-height: 7.5rem; padding-top: .85rem; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,92,56,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(26,26,26,.38); }

.kontakt__form .btn-primary { width: 100%; margin-top: .5rem; height: 3.25rem; font-size: 1rem; }

.kontakt__form-wa {
  text-align: center;
  margin-top: 1rem;
}
.kontakt__form-wa a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .18s;
}
.kontakt__form-wa a:hover { opacity: .75; }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer__brand {}
.footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.1);
  padding: .5rem .9rem .5rem .5rem;
  border-radius: .75rem;
  margin-bottom: 1rem;
}
.footer__logo-wrap img { height: 2rem; width: auto; }
.footer__logo-wrap span { font-family: 'DM Serif Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }

.footer__brand p { font-size: .875rem; line-height: 1.7; }
.footer__brand .footer__brand-name { font-weight: 600; color: var(--white); }

.footer__contact h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__contact a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .18s;
  margin-bottom: .4rem;
}
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: rgba(255,255,255,.65); transition: color .18s; }
.footer__links a:hover { color: var(--white); }

/* ===========================================
   IMPRESSUM / DATENSCHUTZ PAGES
   =========================================== */
.legal-page {
  max-width: 820px;
  margin: 4rem auto;
  padding: 0 1.5rem 4rem;
}
.legal-page h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--green);
  margin: 2rem 0 .6rem;
}
.legal-page p, .legal-page li {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.legal-page ul { list-style: disc; padding-left: 1.4rem; }
.legal-page a { color: var(--green); text-decoration: underline; }
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 2rem;
}
.legal-page .back-link:hover { opacity: .75; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .warum__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { padding: 3rem 0 4rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__image-wrap { aspect-ratio: 4/3; order: -1; }
  .hero__card { left: 0; bottom: -1.5rem; width: 100%; max-width: 280px; }

  .leistungen__grid { grid-template-columns: 1fr; }

  .warum__inner { grid-template-columns: 1fr; }
  .warum__image { order: -1; aspect-ratio: 4/3; }
  .warum__benefits { grid-template-columns: 1fr 1fr; }

  .hausbesuche__cards { grid-template-columns: 1fr; }
  .hausbesuche { padding: 4rem 0; }

  .einsatzgebiet__grid { grid-template-columns: 1fr; }
  .einsatzgebiet__map { height: 300px; }

  .kontakt__grid { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn-primary, .hero__buttons .btn-outline { width: 100%; }
  .warum__benefits { grid-template-columns: 1fr; }
}
