/* ==========================================================
   Baumpflege kompakt — Landingpage
   Stil: Euroclean-Vorbild, Waldgrün, Cream, weiche Schatten
   ========================================================== */

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

html, body, h1, h2, h3, h4, p, ul, ol, li, blockquote, figure, fieldset, button {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Doppel-Tap-Zoom auf iOS unterbinden für Buttons/Links — fühlt sich auf Touch responsiver an */
button, a, [role="button"], summary, .pill {
  touch-action: manipulation;
}

/* Verhindert horizontalen Overflow auf Mobile durch fehlerhafte Inhalte */
html, body { overflow-x: hidden; max-width: 100%; }

/* ---------- Tokens ---------- */
:root {
  /* Farben */
  --c-bg:           #FAF8F4;     /* Cream / Off-White */
  --c-bg-alt:       #F2EEE5;     /* leicht dunkler */
  --c-card:         #FFFFFF;
  --c-text:         #14201A;     /* tiefes Anthrazit-Grün */
  --c-text-muted:   #5C6660;
  --c-text-soft:    #7A857F;
  --c-border:       #E8E2D4;
  --c-border-strong:#D9D2BF;

  --c-accent:       #1F3A2E;     /* Waldgrün */
  --c-accent-hover: #15291F;
  --c-accent-soft:  #E6EDE6;
  --c-accent-tint:  #F1F4EE;

  --c-sand:         #E9DFC9;
  --c-sand-soft:    #F1E9D5;

  --c-emergency:    #B8412C;
  --c-emergency-bg: #FCEFEA;
  --c-success:      #1F8A4F;

  /* Typografie — Single typeface, Apple-Style mit Weight-Hierarchie */
  --f-display: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  --f-body:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;

  /* Radien */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 9999px;

  /* Schatten — weich, nicht dramatisch */
  --sh-xs: 0 1px 2px rgba(20, 32, 26, .04);
  --sh-sm: 0 2px 8px rgba(20, 32, 26, .05);
  --sh-md: 0 8px 28px rgba(20, 32, 26, .07);
  --sh-lg: 0 18px 60px rgba(20, 32, 26, .10);
  --sh-form: 0 24px 80px -12px rgba(20, 32, 26, .14), 0 4px 12px rgba(20, 32, 26, .04);

  /* Layout */
  --container-max: 1200px;
  --section-py: clamp(56px, 9vw, 128px);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -.011em;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11", "kern";
}

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

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.08;
  color: var(--c-text);
}

h1 { font-size: clamp(40px, 5.4vw, 68px); letter-spacing: -.035em; font-weight: 700; line-height: 1.04; }
h2 { font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -.028em; font-weight: 600; }
h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -.018em; font-weight: 600; }
h4 { font-size: 15px; font-weight: 600; letter-spacing: -.005em; }

.section-eyebrow {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.section-headline { max-width: 820px; }
.section-sub {
  margin-top: 16px;
  font-size: 18px;
  color: var(--c-text-muted);
  max-width: 640px;
  letter-spacing: -.012em;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--c-accent);
  margin-bottom: 18px;
}

.accent-underline {
  background-image: linear-gradient(transparent 65%, var(--c-sand) 65%);
  padding: 0 .05em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.005em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space: normal;
  text-align: center;
  text-wrap: balance;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  min-height: 44px;
}

.btn:active { transform: translateY(1px); }
.btn-lg     { padding: 16px 26px; font-size: 16.5px; border-radius: 14px; }
.btn-block  { width: 100%; }

.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 6px 20px -8px rgba(31, 58, 46, .55);
}
.btn-primary:hover {
  background: var(--c-accent-hover);
  box-shadow: 0 10px 28px -10px rgba(31, 58, 46, .6);
}

.btn-secondary {
  background: var(--c-card);
  color: var(--c-accent);
  border-color: var(--c-border);
}
.btn-secondary:hover {
  border-color: var(--c-accent);
  background: var(--c-accent-tint);
}

.btn-emergency {
  background: var(--c-emergency);
  color: #fff;
  box-shadow: 0 6px 20px -8px rgba(184, 65, 44, .6);
}
.btn-emergency:hover { background: #9B361F; }

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
  stroke-dasharray: 56;
  stroke-dashoffset: 32;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading .btn-arrow,
.btn.is-loading .btn-label   { opacity: .55; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, .85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-border);
  background: rgba(250, 248, 244, .94);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-accent);
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

@media (max-width: 720px) {
  .logo-img { height: 32px; }
}

.logo-footer .logo-img { height: 36px; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background .2s ease;
}
.header-phone:hover { background: var(--c-accent-tint); }
.header-phone svg { color: var(--c-accent); }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone-label  { font-size: 11px; color: var(--c-text-soft); letter-spacing: .05em; text-transform: uppercase; }
.header-phone-number { font-weight: 700; font-family: var(--f-display); font-size: 16px; letter-spacing: -.01em; }

.trust-strip {
  font-size: 13px;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding: 10px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 14px;
}
.trust-strip-item { display: inline-flex; align-items: center; gap: 6px; }
.trust-strip .check { color: var(--c-accent); font-weight: 700; }
.trust-strip .dot   { color: var(--c-border-strong); }

/* Mobile: Trust-Strip ausblenden — Social-Proof direkt unter Hero zeigt dieselben Punkte */
@media (max-width: 720px) {
  .trust-strip { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(28px, 6vw, 72px) 0 var(--section-py);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--c-bg);
  background-image:
    /* dezente Akzent-Glows oben rechts + unten links */
    radial-gradient(ellipse 900px 700px at 88% 8%, rgba(31, 58, 46, .08), transparent 60%),
    radial-gradient(ellipse 700px 600px at 5% 95%, rgba(233, 223, 201, .35), transparent 55%),
    /* helles Cream-Overlay — Foto schimmert leicht durch */
    linear-gradient(180deg, rgba(250, 248, 244, .80) 0%, rgba(250, 248, 244, .92) 70%, rgba(250, 248, 244, .96) 100%),
    /* Hintergrund-Foto: Bonn mit Kletterer + Siebengebirge */
    url("public/IMG_6491.jpg");
  background-position: center, center, center, center 35%;
  background-size: cover, cover, cover, cover;
  background-repeat: no-repeat;
}

/* Mobile: Foto stärker abdunkeln (Lesbarkeit) und horizontalen Fokus auf Mitte */
@media (max-width: 720px) {
  .hero {
    background-image:
      radial-gradient(ellipse 600px 500px at 88% 8%, rgba(31, 58, 46, .07), transparent 60%),
      radial-gradient(ellipse 500px 400px at 5% 95%, rgba(233, 223, 201, .25), transparent 55%),
      linear-gradient(180deg, rgba(250, 248, 244, .88) 0%, rgba(250, 248, 244, .96) 60%, rgba(250, 248, 244, .98) 100%),
      url("public/IMG_6491.jpg");
    background-position: center, center, center, center 30%;
  }
}

/* Sehr feines Grain für Paper-Textur */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.13 0 0 0 0 0.10 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .03;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
  }
}

@media (min-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
  }
}

.hero-text {
  max-width: 640px;
  display: flex;
  flex-direction: column;
}

/* Eyebrow — clean, kein Chip, nur Punkt + Text (Apple-Style) */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text-muted);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -.005em;
  margin-bottom: 22px;
  width: fit-content;
}
.hero-eyebrow .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2EA855;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(46, 168, 85, .15);
}
.hero-eyebrow .eyebrow-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2EA855;
  opacity: .5;
  animation: live-pulse 2.4s ease-out infinite;
}
@keyframes live-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Headline — Apple-clean: ein Typeface, soft muted Sekundärlinie */
.hero-headline {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -.038em;
  font-weight: 700;
  margin-bottom: 18px;
  text-wrap: balance;
  color: var(--c-text);
}
.hero-headline-soft {
  color: var(--c-text-muted);
  font-weight: 700;
  display: inline;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--c-text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.45;
  letter-spacing: -.012em;
  font-weight: 400;
}

/* Stat-Row — Apple-clean: dezente Zahlen, einheitlicher Weight */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.hero-stat {
  padding: 0 4px;
  min-width: 0;
}
.hero-stat + .hero-stat {
  border-left: 1px solid var(--c-border);
  padding-left: 16px;
}
.hero-stat-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--c-text);
}
.hero-stat-num span {
  font-weight: 500;
  font-size: .65em;
  margin-left: 1px;
  color: var(--c-text-muted);
  letter-spacing: -.02em;
}
.hero-stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 400;
  letter-spacing: -.005em;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .hero-stat + .hero-stat { padding-left: 10px; }
  .hero-stat-label { font-size: 12px; line-height: 1.25; }
}

/* Hero-Foto-Karte — größer, dramatischer, mit floating cards */
.hero-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;          /* damit floating Cards überlappen können */
  margin: 0;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  box-shadow:
    0 30px 60px -22px rgba(20, 32, 26, .28),
    0 14px 28px -16px rgba(20, 32, 26, .20);
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  border-radius: var(--r-xl);
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
}
.hero-photo:hover > img { transform: scale(1.025); }

/* Sanftes Verlaufs-Overlay auf dem Bild */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background:
    linear-gradient(to top, rgba(20, 32, 26, .28) 0%, rgba(20, 32, 26, 0) 35%),
    linear-gradient(to bottom, rgba(20, 32, 26, .15) 0%, rgba(20, 32, 26, 0) 25%);
  pointer-events: none;
  z-index: 1;
}

/* Floating: ZTV-Zertifizierungs-Badge oben rechts */
.hero-photo-cert {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 32, 26, .82);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  color: #fff;
  padding: 10px 14px 10px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 8px 24px rgba(20, 32, 26, .25);
}
.hero-photo-cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-sand);
  color: var(--c-accent);
}
.hero-photo-cert-icon svg { width: 16px; height: 16px; }
.hero-photo-cert-text { display: flex; flex-direction: column; line-height: 1.15; }
.hero-photo-cert-text strong { font-family: var(--f-display); font-size: 13px; font-weight: 700; }
.hero-photo-cert-text span   { font-size: 11px; opacity: .75; }

/* Floating: Mini-Testimonial-Card unten links, halb über die Bild-Kante */
.hero-photo-quote {
  position: absolute;
  left: -18px;
  bottom: -28px;
  z-index: 3;
  background: var(--c-card);
  padding: 16px 18px;
  border-radius: var(--r-lg);
  box-shadow: 0 18px 42px -10px rgba(20, 32, 26, .22), 0 6px 14px rgba(20, 32, 26, .06);
  border: 1px solid var(--c-border);
  max-width: 290px;
  font-size: 13px;
  line-height: 1.5;
  transform: rotate(-1.2deg);
}
.hero-photo-quote .rating-stars-sm { margin-bottom: 6px; }
.hero-photo-quote p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--c-text);
  line-height: 1.45;
  margin-bottom: 10px;
}
.hero-photo-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--c-border);
}
.hero-photo-quote-author > div:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.hero-photo-quote-author strong { font-family: var(--f-display); font-size: 13px; font-weight: 700; }
.hero-photo-quote-author span   { font-size: 11px; color: var(--c-text-muted); }

.avatar.avatar-sm { width: 32px; height: 32px; font-size: 12px; }

.rating-stars { display: inline-flex; gap: 2px; }
.rating-stars svg { width: 18px; height: 18px; fill: #F5B700; }
.rating-stars-sm svg { width: 14px; height: 14px; }

/* Hero-Foto: Aspect-Ratios pro Breakpoint */
@media (min-width: 980px) {
  .hero-photo { aspect-ratio: 5 / 4; margin-top: 8px; }
  .hero-photo > img { object-position: 50% 22%; }
}

@media (max-width: 540px) {
  .hero-photo-quote {
    left: 12px;
    right: 12px;
    bottom: -16px;
    max-width: none;
    transform: rotate(-.6deg);
  }
  .hero-photo-cert {
    padding: 8px 12px 8px 10px;
  }
  .hero-photo-cert-text strong { font-size: 12px; }
  .hero-photo-cert-text span   { display: none; }
}

/* Entrance-Animation: subtiles Fade-up im Hero */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
.hero-text > *,
.hero-grid > .form-card {
  animation: hero-fade-up .7s cubic-bezier(.2, .7, .2, 1) backwards;
}
.hero-text > *:nth-child(1) { animation-delay: .05s; }
.hero-text > *:nth-child(2) { animation-delay: .12s; }
.hero-text > *:nth-child(3) { animation-delay: .19s; }
.hero-text > *:nth-child(4) { animation-delay: .26s; }
.hero-text > *:nth-child(5) { animation-delay: .33s; }
.hero-grid > .form-card     { animation-delay: .25s; }

.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-weight: 700;
  font-size: 12px;
}

/* ---------- Form Card ---------- */
.form-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-form);
  padding: clamp(20px, 2.4vw, 28px);
  position: relative;
  z-index: 2;
  scroll-margin-top: 96px;
  transition: box-shadow .35s ease;
}
.form-card.is-highlighted {
  box-shadow: 0 28px 90px -10px rgba(31, 58, 46, .25), 0 4px 12px rgba(20, 32, 26, .04);
}
@media (max-width: 720px) {
  .form-card { scroll-margin-top: 70px; }
}

.form-card-head { margin-bottom: 16px; }
.form-card-head h2 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.022em;
  margin-bottom: 2px;
}
.form-sub { font-size: 13px; color: var(--c-text-muted); letter-spacing: -.005em; }

/* Service-Pills */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 11px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text);
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  font-family: var(--f-body);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  min-height: 36px;
}

@media (hover: hover) {
  .pill:hover { border-color: var(--c-accent); color: var(--c-accent); }
}
.pill:active { transform: scale(.97); }

@media (max-width: 720px) {
  .pill { min-height: 40px; padding: 9px 14px 9px 11px; font-size: 14px; }
}

.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--c-accent);
}
.pill-icon svg { width: 16px; height: 16px; }

.pill-check {
  display: none;
  margin-left: 2px;
  color: #fff;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-accent);
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.pill.is-active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}
.pill.is-active .pill-icon { color: #fff; }
.pill.is-active .pill-check { display: inline-flex; background: rgba(255,255,255,.2); }

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.field-full { grid-column: 1 / -1; }

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

.field { display: flex; flex-direction: column; }
.field-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -.005em;
}
.req      { color: var(--c-accent); }
.optional { color: var(--c-text-soft); font-weight: 500; font-size: 11.5px; }

.field input,
.field textarea {
  width: 100%;
  padding: 10px 13px;
  font-size: 14.5px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* iOS zoom-fix: Input-Schrift muss ≥16px sein, sonst zoomt Safari beim Fokus */
@media (max-width: 720px) {
  .field input,
  .field textarea {
    font-size: 16px;
    padding: 12px 14px;
  }
}
.field input:hover,
.field textarea:hover { border-color: var(--c-border-strong); }

.field input:focus,
.field textarea:focus {
  outline: 0;
  background: var(--c-card);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}

.field textarea { resize: vertical; min-height: 64px; }

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: var(--c-emergency);
  font-weight: 500;
}
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error textarea { border-color: var(--c-emergency); background: #FFF8F6; }

/* Checkbox */
.checkbox {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12.5px;
  color: var(--c-text-muted);
  line-height: 1.45;
  margin-bottom: 14px;
  cursor: pointer;
}
.checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox-mark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--c-border-strong);
  border-radius: 6px;
  background: var(--c-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
  flex-shrink: 0;
  margin-top: 1px;
}
.checkbox input:checked + .checkbox-mark {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.checkbox input:checked + .checkbox-mark::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.checkbox a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }

.checkbox.has-error .checkbox-mark { border-color: var(--c-emergency); }
.checkbox.has-error .field-error {
  display: block;
  grid-column: 1 / -1;
  margin-top: 0;
}

/* Mikro-Trust unter CTA */
.micro-trust {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--c-text-muted);
  font-weight: 500;
}
.micro-trust li::before {
  content: none;
}

/* Erfolgs-State */
.form-success {
  text-align: center;
  padding: 16px 8px 8px;
}
.success-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-circle svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 10px; font-size: 22px; }
.form-success p { color: var(--c-text-muted); margin-bottom: 22px; }
.form-success .btn { margin-top: 4px; }

/* ---------- Social Proof / Google ---------- */
.social-proof {
  background: var(--c-card);
  padding: 36px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.social-proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.google-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.google-logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.02em;
}
.google-stars { display: inline-flex; gap: 2px; }
.google-stars svg { width: 17px; height: 17px; fill: #F5B700; }
.google-text { font-size: 14px; color: var(--c-text-muted); }
.google-text strong { color: var(--c-text); font-family: var(--f-display); }

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}
.proof-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Leistungen ---------- */
.leistungen { padding: var(--section-py) 0; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.service-tags li a {
  display: inline-flex;
  padding: 12px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  transition: all .2s ease;
}
@media (hover: hover) {
  .service-tags li a:hover {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
    transform: translateY(-1px);
    box-shadow: var(--sh-sm);
  }
}
.service-tags li a:active {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

/* ---------- Gallery ---------- */
.gallery {
  padding: var(--section-py) 0;
  background: var(--c-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
  }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: span 2; }
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  background: var(--c-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
  }
  .gallery-item:hover img { transform: scale(1.04); }
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 32, 26, .55) 0%, rgba(20, 32, 26, 0) 50%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.005em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

/* ---------- Notdienst ---------- */
.emergency {
  padding: 36px 0;
  background: var(--c-emergency-bg);
  border-top: 1px solid #F2DDD3;
  border-bottom: 1px solid #F2DDD3;
}

.emergency-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.emergency-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 400px;
}
.emergency-text h3 {
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.emergency-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-emergency);
  margin-bottom: 4px;
}

.pulse-dot {
  width: 14px;
  height: 14px;
  background: var(--c-emergency);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(184, 65, 44, .55);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184, 65, 44, .55); }
  70%  { box-shadow: 0 0 0 12px rgba(184, 65, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 65, 44, 0); }
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--c-bg-alt);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 48px;
}
@media (min-width: 720px)  { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
  }
}

.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-accent);
  background: var(--c-accent-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.testimonial-quote {
  font-size: 15.5px;
  color: var(--c-text);
  line-height: 1.55;
  flex-grow: 1;
}

.testimonial-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
.testimonial-foot strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14.5px;
}
.testimonial-foot span {
  font-size: 13px;
  color: var(--c-text-muted);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-accent);
  flex-shrink: 0;
}

/* ---------- Mid CTA ---------- */
.cta-mid {
  padding: var(--section-py) 0;
  text-align: center;
}
.cta-mid-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cta-mid h2 { font-size: clamp(28px, 3.4vw, 40px); }
.cta-micro {
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 500;
}

/* ---------- Warum ---------- */
.warum {
  padding: var(--section-py) 0;
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 820px) { .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.usp-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
@media (hover: hover) {
  .usp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
  }
}

.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--c-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.usp-icon svg { width: 28px; height: 28px; }

.usp-card h3 { font-size: 22px; }
.usp-card p { color: var(--c-text-muted); line-height: 1.6; }

.warum-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* ---------- Versprechen ---------- */
.versprechen {
  padding: var(--section-py) 0;
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
}

.versprechen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 920px) {
  .versprechen-grid { grid-template-columns: 1fr 1.3fr; gap: 80px; }
}

.versprechen-photo {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: var(--c-sand-soft);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-fallback-content {
  display: none;
}
.photo-frame.photo-fallback {
  background: linear-gradient(135deg, var(--c-sand) 0%, var(--c-sand-soft) 60%, var(--c-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame.photo-fallback .photo-fallback-content {
  display: flex;
  font-family: var(--f-display);
  font-size: 96px;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -.04em;
  opacity: .3;
}

.signature-card {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-card);
  padding: 14px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
  text-align: center;
  white-space: nowrap;
  max-width: calc(100% + 32px);
}

@media (max-width: 540px) {
  .signature-card {
    white-space: normal;
    padding: 12px 18px;
    max-width: calc(100% - 16px);
  }
  .signature-name { font-size: 15px; }
  .signature-role { font-size: 11.5px; }
}
.signature-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
}
.signature-role {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.versprechen-quote {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-text);
  letter-spacing: -.015em;
  margin: 16px 0 24px;
}

.versprechen-attribution {
  font-size: 14px;
  color: var(--c-text-muted);
  font-weight: 500;
  margin-bottom: 32px;
}

/* ---------- FAQ ---------- */
.faq { padding: var(--section-py) 0; }

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.accordion {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.accordion-item[open] {
  border-color: var(--c-accent);
  box-shadow: var(--sh-sm);
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-text);
  -webkit-tap-highlight-color: transparent;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::marker                 { content: ""; }

.acc-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--c-accent);
  transition: transform .25s ease;
}
.accordion-item[open] .acc-chevron { transform: rotate(180deg); }

.accordion-body {
  padding: 0 24px 22px;
  color: var(--c-text-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.accordion-body p { margin-bottom: 8px; }
.accordion-body a { color: var(--c-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: var(--section-py) 0;
  background: var(--c-accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.08), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255,255,255,.04), transparent 50%);
  pointer-events: none;
}
.final-cta > .container { position: relative; }

.final-cta .section-eyebrow { color: var(--c-sand); }
.final-cta h2,
.final-cta h3 { color: #fff; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 820px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-sand);
  color: var(--c-accent);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.step-card h3 { margin-bottom: 8px; font-size: 20px; }
.step-card p  { color: rgba(255,255,255,.78); font-size: 15.5px; line-height: 1.55; }

.final-cta-inner {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.final-cta .btn-primary {
  background: var(--c-sand);
  color: var(--c-accent);
  box-shadow: 0 6px 24px -6px rgba(0,0,0,.25);
}
.final-cta .btn-primary:hover { background: #DBC9A1; }
.final-cta .cta-micro { color: rgba(255,255,255,.7); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 64px 0 100px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
@media (min-width: 720px) { .site-footer { padding-bottom: 32px; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

.logo-footer { color: var(--c-accent); margin-bottom: 12px; }
.footer-claim { font-size: 14px; color: var(--c-text-muted); max-width: 320px; line-height: 1.55; }

.site-footer h4 { margin-bottom: 12px; }
.site-footer p { font-size: 14px; color: var(--c-text-muted); line-height: 1.7; }
.site-footer p a { color: var(--c-text); font-weight: 500; }
.site-footer p a:hover { color: var(--c-accent); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer-links a { color: var(--c-text-muted); }
.footer-links a:hover { color: var(--c-accent); }

.not-google {
  font-size: 12px;
  color: var(--c-text-soft);
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  margin-bottom: 12px;
  line-height: 1.55;
}
.copyright { font-size: 12px; color: var(--c-text-soft); }

/* ---------- Mobile Sticky Bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -8px 24px rgba(20, 32, 26, .08);
  gap: 10px;
}

.mobile-bar-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.mobile-bar-btn-call {
  background: var(--c-card);
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent);
}
.mobile-bar-btn-cta {
  background: var(--c-accent);
  color: #fff;
}

@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .header-phone-text { display: none; }
  .header-phone { padding: 10px; min-width: 44px; min-height: 44px; }
}

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

/* ---------- Danke-Page ---------- */
.danke-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--c-bg);
  background-image:
    radial-gradient(ellipse 700px 500px at 88% 8%, rgba(31, 58, 46, .07), transparent 60%),
    radial-gradient(ellipse 600px 500px at 5% 95%, rgba(233, 223, 201, .35), transparent 55%);
}

.danke-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Animierter grüner Haken */
.danke-check {
  width: clamp(96px, 13vw, 124px);
  aspect-ratio: 1;
  margin-bottom: 32px;
  opacity: 0;
  transform: scale(.4);
  animation: check-pop .55s cubic-bezier(.2, .8, .2, 1.2) forwards;
}
.danke-check svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(31, 58, 46, .25));
}
.danke-check-circle {
  fill: var(--c-accent);
  stroke: none;
}
.danke-check-mark {
  fill: none;
  stroke: #ffffff;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: check-draw .4s cubic-bezier(.4, 0, .2, 1) .4s forwards;
}

@keyframes check-pop {
  0%   { opacity: 0; transform: scale(.4); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes check-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .danke-check { animation: none; opacity: 1; transform: none; }
  .danke-check-mark { animation: none; stroke-dashoffset: 0; }
}

.danke-hero .hero-eyebrow { margin-bottom: 16px; }

/* Sanftes Fade-Up für Danke-Hero — gleiche Choreographie wie auf der Hauptseite */
.danke-hero-inner > * {
  animation: hero-fade-up .65s cubic-bezier(.2, .7, .2, 1) backwards;
}
.danke-hero-inner > *:nth-child(1) { animation-delay: .05s; }
.danke-hero-inner > *:nth-child(2) { animation-delay: .12s; }
.danke-hero-inner > *:nth-child(3) { animation-delay: .19s; }
.danke-hero-inner > *:nth-child(4) { animation-delay: .26s; }

.danke-headline {
  font-size: clamp(40px, 5.4vw, 68px);
  letter-spacing: -.038em;
  line-height: 1.04;
  font-weight: 700;
  margin-bottom: 18px;
  text-wrap: balance;
  color: var(--c-text);
}

.danke-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--c-text-muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.45;
  letter-spacing: -.012em;
  text-wrap: balance;
}
.danke-sub strong { color: var(--c-text); font-weight: 600; }

/* Next-Steps-Section (heller Hintergrund mit hellen Karten) */
.danke-steps {
  padding: var(--section-py) 0;
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

/* Light-Variant der step-grid — überschreibt die dunklen final-cta Styles */
.steps-grid-light {
  margin-top: 48px;
}
.steps-grid-light .step-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  backdrop-filter: none;
}
.steps-grid-light .step-card h3 { color: var(--c-text); }
.steps-grid-light .step-card p {
  color: var(--c-text-muted);
  font-size: 15.5px;
  line-height: 1.55;
}

/* Signatur-Sektion */
.danke-signature {
  padding: clamp(48px, 8vw, 80px) 0;
  text-align: center;
}
.danke-signature-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.danke-signature-text {
  font-size: 18px;
  color: var(--c-text-muted);
  line-height: 1.45;
}
.danke-signature-text strong {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-text);
  font-size: 19px;
  letter-spacing: -.018em;
  display: inline-block;
  margin-top: 4px;
}

.danke-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  transition: background .2s, border-color .2s, color .2s;
}
@media (hover: hover) {
  .danke-back:hover {
    color: var(--c-accent);
    border-color: var(--c-accent);
    background: var(--c-accent-tint);
  }
}

/* Mobile-Bar mit nur einem Button (nur Anrufen auf Danke-Page) */
.mobile-bar-single .mobile-bar-btn { flex: 1 1 auto; }

/* ---------- Hidden but accessible ---------- */
[hidden] { display: none !important; }
