/* Pro24h Schlüsseldienst — Modern Handwerker.
   White + near-black + amber accent. Mobile-first.
   Sticky bottom phone bar on mobile. Different structure from Sanitar. */

:root {
  /* Surfaces — clean white with subtle gray sections */
  --bg: #ffffff;
  --bg-soft: #f4f4f5;
  --bg-line: #e4e4e7;

  /* Ink — near black, no pure black */
  --text: #18181b;
  --text-soft: #52525b;
  --text-mute: #a1a1aa;

  /* Brand & action — amber emergency accent */
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-soft: #fef3c7;

  /* CTA — black button (unique, not red, not orange) */
  --cta: #18181b;
  --cta-hover: #000000;

  /* Status */
  --success: #16a34a;
  --success-soft: #dcfce7;

  --radius: 8px;
  --radius-lg: 14px;
  --container: 1180px;

  /* Mobile sticky bar height — used to add bottom padding */
  --mobile-bar-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  /* Leave room for mobile sticky bar */
  padding-bottom: var(--mobile-bar-h);
}

img, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--text); text-decoration: none; }

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

/* === Status bar — operator online === */
.statusbar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--bg-line);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

.statusbar .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px var(--success-soft);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

.statusbar strong { color: var(--text); font-weight: 700; }

/* === Header === */
.header {
  background: #fff;
  border-bottom: 1px solid var(--bg-line);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 90;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .name { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.brand-text .sub { font-size: 11px; color: var(--text-mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: var(--text) !important;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.15s;
  letter-spacing: -0.005em;
}

.header-call:hover { background: var(--amber-dark); color: var(--text) !important; }
.header-call svg { width: 16px; height: 16px; }

/* === HERO — split layout, sans-serif, big numbers, no rounded photo card === */
.hero {
  padding: 32px 0 56px;
  background: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-soft);
  color: var(--amber-dark);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero h1 .amber-underline {
  background: linear-gradient(to top, var(--amber) 32%, transparent 32%);
  padding: 0 2px;
}

.hero-lead {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 38ch;
}

.hero-lead strong { color: var(--text); font-weight: 700; }

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cta);
  color: #fff !important;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 16px 24px;
  min-height: 56px;
  border-radius: var(--radius);
  border: none;
  text-decoration: none;
  transition: all 0.15s ease;
  width: 100%;
}

.btn-call:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.btn-call svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-call .num { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; }

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  color: var(--text);
  padding: 7px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid var(--bg-line);
}

.hero-trust-chip svg { width: 14px; height: 14px; color: var(--success); }

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-image-badge .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.8s ease-in-out infinite;
}

/* === STATS STRIP — horizontal numbers === */
.stats {
  background: var(--text);
  color: #fff;
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
}

.stat {
  text-align: center;
  position: relative;
}

.stat-value {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  color: #fff;
}

.stat-value .unit {
  color: var(--amber);
  font-size: 24px;
  margin-left: 2px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* === LEISTUNGEN — 3 services as horizontal split rows, NOT card grid === */
.leistungen {
  padding: 64px 0 56px;
  background: var(--bg);
}

.section-head {
  margin-bottom: 36px;
}

.section-head .kicker {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 8px;
}

.section-head p {
  font-size: 15.5px;
  color: var(--text-soft);
  max-width: 50ch;
}

.leistung-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.leistung-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--bg-line);
  transition: all 0.18s ease;
}

.leistung-row:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.15);
  transform: translateY(-2px);
  color: var(--text);
}

.leistung-photo {
  aspect-ratio: 16 / 9;
  background: var(--bg-line);
  overflow: hidden;
}

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

.leistung-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.leistung-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: 0.16em;
}

.leistung-body h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.leistung-body p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

.leistung-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.005em;
}

.leistung-link svg {
  width: 16px;
  height: 16px;
  background: var(--amber);
  border-radius: 50%;
  padding: 3px;
  transition: transform 0.2s;
}

.leistung-row:hover .leistung-link svg { transform: translateX(3px); }

/* === NOTRUF-PROTOKOLL — visual timeline === */
.protokoll {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}

.protokoll-head {
  text-align: center;
  margin-bottom: 40px;
}

.protokoll-head .kicker { color: var(--amber-dark); }
.protokoll-head h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 10px; }
.protokoll-head p { font-size: 15.5px; color: var(--text-soft); max-width: 48ch; margin: 0 auto; }

.protokoll-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.proto-step {
  background: #fff;
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.proto-step-num {
  width: 44px;
  height: 44px;
  background: var(--amber-soft);
  color: var(--amber-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.proto-step-body { flex: 1; min-width: 0; }
.proto-step-body h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.proto-step-body p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

.proto-step-body p strong { color: var(--text); font-weight: 700; }

.proto-step-time {
  font-size: 11px;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: 0.12em;
  margin-top: 8px;
  text-transform: uppercase;
}

/* === VERGLEICH — DIY vs Profi table === */
.vergleich {
  padding: 64px 0;
}

.vergleich-head {
  margin-bottom: 28px;
}

.vergleich-head .kicker { color: var(--amber-dark); }
.vergleich-head h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; }

.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.compare-col-head {
  padding: 16px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.compare-col-head.diy {
  background: #fee2e2;
  color: #991b1b;
  border-bottom: 1px solid var(--bg-line);
}

.compare-col-head.profi {
  background: var(--text);
  color: #fff;
  border-bottom: 1px solid var(--text);
}

.compare-cell {
  padding: 14px;
  font-size: 14px;
  border-top: 1px solid var(--bg-line);
  line-height: 1.5;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.compare-cell.diy {
  color: var(--text-soft);
}
.compare-cell.profi {
  color: var(--text);
  background: #fafafa;
}

.compare-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}
.compare-cell.diy .compare-icon { color: #dc2626; }
.compare-cell.profi .compare-icon { color: var(--success); }

/* === RATGEBER — compact 2-col article grid (NOT magazine editions) === */
.ratgeber {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}

.ratgeber-head {
  text-align: center;
  margin-bottom: 40px;
}

.ratgeber-head .kicker { color: var(--amber-dark); }
.ratgeber-head h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 8px; }
.ratgeber-head p { font-size: 15px; color: var(--text-soft); max-width: 50ch; margin: 0 auto; }

.ratgeber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.ratgeber-card {
  background: #fff;
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  padding: 20px 18px 22px;
  transition: all 0.18s;
}

.ratgeber-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.ratgeber-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ratgeber-card h3 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--text);
}

.ratgeber-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.ratgeber-card p strong {
  color: var(--text);
  font-weight: 700;
  background: var(--amber-soft);
  padding: 0 3px;
  border-radius: 2px;
}

/* === THEMEN IM DETAIL — long-form articles with DKI in headings AND bodies === */
.themen {
  padding: 64px 0;
  background: var(--bg);
}

.themen-head { text-align: center; margin-bottom: 36px; }
.themen-head .kicker { color: var(--amber-dark); }
.themen-head h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 8px; }
.themen-head p { font-size: 15px; color: var(--text-soft); max-width: 50ch; margin: 0 auto; }

.themen-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}

.themen-card {
  background: #fff;
  border: 1px solid var(--bg-line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  transition: all 0.18s ease;
}

.themen-card:hover {
  border-left-color: var(--amber-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateX(2px);
}

.themen-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.themen-card h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 12px;
  color: var(--text);
}

.themen-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.themen-card p strong {
  color: var(--text);
  background: var(--amber-soft);
  padding: 0 3px;
  border-radius: 2px;
  font-weight: 700;
}

/* === GALERIE — practice photos === */
.galerie {
  padding: 64px 0;
  background: var(--bg);
}

.galerie-head { text-align: center; margin-bottom: 36px; }
.galerie-head .kicker { color: var(--amber-dark); }
.galerie-head h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 8px; }
.galerie-head p { font-size: 15px; color: var(--text-soft); max-width: 50ch; margin: 0 auto; }

.galerie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.galerie-item {
  background: var(--bg-soft);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.18s;
}

.galerie-item:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.galerie-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.galerie-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.galerie-item:hover .galerie-photo img { transform: scale(1.04); }

.galerie-item figcaption {
  padding: 14px 14px 16px;
}

.galerie-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.galerie-item figcaption p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
}

/* === KUNDENSTIMMEN — testimonial-style review row === */
.reviews {
  padding: 64px 0;
}

.reviews-head { text-align: center; margin-bottom: 36px; }
.reviews-head .kicker { color: var(--amber-dark); }
.reviews-head h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 6px; }
.reviews-head .stars { color: var(--amber); font-size: 18px; letter-spacing: 2px; margin-top: 10px; }
.reviews-head .stars-text { color: var(--text-soft); font-size: 13.5px; font-weight: 600; margin-top: 4px; }

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.review-card {
  background: var(--bg-soft);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.review-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 14px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--bg-line);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.review-author-info { display: flex; flex-direction: column; }
.review-author-info .name { font-size: 13.5px; font-weight: 800; }
.review-author-info .meta { font-size: 12px; color: var(--text-mute); font-weight: 600; }

/* === FAQ — modern card style, NOT plus-accordion === */
.faq {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}

.faq-head { text-align: center; margin-bottom: 36px; }
.faq-head .kicker { color: var(--amber-dark); }
.faq-head h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; }

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--amber);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-weight: 800;
  font-size: 15.5px;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--amber-dark);
  transition: transform 0.25s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 20px 18px;
}

/* === FINAL CTA — full-bleed dark === */
.final {
  background: var(--text);
  color: #fff;
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.final .container { position: relative; z-index: 1; }

.final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.final-eyebrow .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 1.8s ease-in-out infinite;
}

.final h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 14px;
  color: #fff;
}

.final h2 .amber-underline {
  background: linear-gradient(to top, var(--amber) 32%, transparent 32%);
  color: #fff;
  padding: 0 4px;
}

.final-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.final .btn-call {
  max-width: 380px;
  margin: 0 auto;
  background: var(--amber);
  color: var(--text) !important;
}

.final .btn-call:hover {
  background: #fff;
  color: var(--text) !important;
}

.final-meta {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.6);
  padding: 36px 0 24px;
  font-size: 13.5px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.footer-col p { line-height: 1.6; }
.footer-col a { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.footer-col a:hover { border-bottom-color: var(--amber); color: var(--amber); }

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* === STICKY MOBILE PHONE BAR === */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  z-index: 200;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--mobile-bar-h);
}

.mobile-bar-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mobile-bar-info .label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-bar-info .label .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 1.8s ease-in-out infinite;
}

.mobile-bar-info .num {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  margin-top: 3px;
}

.mobile-bar-cta {
  background: var(--amber);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.mobile-bar-cta:hover { background: var(--amber-dark); color: var(--text); }
.mobile-bar-cta svg { width: 16px; height: 16px; }

/* === TABLET 640+ === */
@media (min-width: 640px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }

  .hero { padding: 56px 0 80px; }
  .hero h1 { font-size: 56px; }
  .hero-lead { font-size: 18px; }
  .btn-call { width: auto; padding: 18px 32px; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
  .stat-value { font-size: 44px; }

  .section-head h2 { font-size: 36px; }
  .leistungen { padding: 88px 0 72px; }
  .leistung-row { grid-template-columns: 280px 1fr; align-items: stretch; }
  .leistung-photo { aspect-ratio: auto; height: 100%; }
  .leistung-body { padding: 28px 28px; }
  .leistung-body h3 { font-size: 24px; }

  .protokoll { padding: 88px 0; }
  .protokoll-head h2 { font-size: 36px; }
  .protokoll-steps { grid-template-columns: 1fr 1fr; }

  .vergleich { padding: 88px 0; }
  .vergleich-head h2 { font-size: 36px; }
  .compare-col-head { font-size: 14px; padding: 18px; }
  .compare-cell { padding: 18px; font-size: 15px; }

  .ratgeber { padding: 88px 0; }
  .ratgeber-head h2 { font-size: 36px; }
  .ratgeber-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ratgeber-card { padding: 26px 24px 28px; }
  .ratgeber-card h3 { font-size: 19px; }

  .themen { padding: 88px 0; }
  .themen-head h2 { font-size: 36px; }
  .themen-list { grid-template-columns: 1fr 1fr; gap: 18px; }
  .themen-card { padding: 28px 28px 30px; }
  .themen-card h3 { font-size: 22px; }

  .galerie { padding: 88px 0; }
  .galerie-head h2 { font-size: 36px; }
  .galerie-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .galerie-item figcaption { padding: 18px 18px 20px; }
  .galerie-item figcaption p { font-size: 14px; }

  .reviews { padding: 88px 0; }
  .reviews-head h2 { font-size: 36px; }
  .review-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .faq { padding: 88px 0; }
  .faq-head h2 { font-size: 36px; }
  .faq-q { font-size: 16.5px; padding: 22px 24px; }

  .final { padding: 96px 0 100px; }
  .final h2 { font-size: 56px; }
  .final-sub { font-size: 17px; }

  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
}

/* === DESKTOP 1024+ === */
@media (min-width: 1024px) {
  .hero { padding: 72px 0 96px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .hero h1 { font-size: 68px; }

  .section-head h2 { font-size: 42px; }

  .leistung-list { gap: 16px; }
  .leistung-row { grid-template-columns: 360px 1fr; }
  .leistung-body { padding: 32px 36px; }
  .leistung-body h3 { font-size: 26px; }

  .protokoll-steps { grid-template-columns: repeat(4, 1fr); }

  .final h2 { font-size: 68px; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
