@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --orange: #F47B20;
  --orange-dark: #d96a10;
  --black: #111;
  --bg: #0e0e0e;
  --bg2: #161616;
  --bg3: #1e1e1e;
  --text: #f0f0f0;
  --text-muted: #888;
  --border: #2a2a2a;
  --white: #f5f5f5;
  --green: #25d366;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --font: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tag {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
}
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .15s, opacity .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: .9; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); opacity: 1; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); opacity: 1; }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); opacity: 1; }
.btn-whatsapp { background: var(--green); color: #fff; font-size: 16px; padding: 16px 32px; }
.btn-whatsapp:hover { background: #1ebe5b; opacity: 1; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ── HERO ── */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(244,123,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-horse {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(50vw, 550px);
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
  filter: saturate(1.5);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}
.hero-author-text { font-size: 13px; color: var(--text-muted); }
.hero-author-text strong { display: block; color: var(--text); font-size: 14px; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── ABOUT ── */
.about { background: var(--bg2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about h2 { margin-bottom: 20px; }
.about-text { color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.about-features li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-imgs { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.about-portrait {
  width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 3px solid var(--border);
}
.about-action {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(0.3);
  border: 2px solid var(--border);
}

/* ── LEISTUNGEN ── */
.leistungen { position: relative; overflow: hidden; }
.leistungen-bg {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 40%;
  opacity: 0.04;
  pointer-events: none;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 0 auto; }
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--orange); transform: translateY(-3px); }
.card-featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(244,123,32,0.05) 0%, var(--bg2) 100%);
}
.card-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.card-plan {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.card-title { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.card-price { margin-bottom: 20px; }
.card-price .price-main { font-size: 36px; font-weight: 700; }
.card-price .price-sub { color: var(--text-muted); font-size: 13px; }
.card-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text-muted); }
.card-features li .check { color: var(--orange); flex-shrink: 0; }
.card-cta { margin-top: 24px; }
.card-cta .btn { width: 100%; justify-content: center; }
.card-cta-btn { display: flex; width: 100%; justify-content: center; text-decoration: none; }
.card-ideal { margin-top: 12px; font-size: 12px; color: var(--text-muted); text-align: center; }

/* ── KALKULATOR ── */
.kalkulator { background: var(--bg2); }
.calc-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.calc-controls { display: flex; flex-direction: column; gap: 28px; }
.calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.calc-field .slider-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.calc-field .slider-value span:first-child { font-size: 32px; font-weight: 700; color: var(--orange); }
.slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--orange);
}
.select-custom {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.select-custom:focus { outline: none; border-color: var(--orange); }
.calc-results { display: flex; flex-direction: column; gap: 16px; }
.calc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.calc-card-featured { border-color: var(--orange); }
.calc-card-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.calc-card-name { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.calc-price-row { display: flex; justify-content: space-between; align-items: flex-end; }
.calc-price-main { font-size: 36px; font-weight: 700; color: var(--orange); }
.calc-price-sub { font-size: 13px; color: var(--text-muted); }
.savings-badge {
  background: rgba(244,123,32,0.15);
  color: var(--orange);
  border: 1px solid rgba(244,123,32,0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  margin-top: 8px;
  display: inline-block;
}
.calc-card-intensiv .calc-price-main { font-size: 28px; }
.comparison-table { margin-top: 32px; }
.comparison-table h4 { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.comparison-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table th { text-align: left; padding: 8px 0; color: var(--text-muted); font-weight: 500; border-bottom: 1px solid var(--border); }
.comparison-table td { padding: 10px 0; border-bottom: 1px solid var(--border); }
.comparison-table td:last-child, .comparison-table th:last-child { text-align: right; color: var(--orange); font-weight: 600; }

/* ── BEWERTUNGEN / TESTIMONIALS ── */
.testimonials-section {
  background: var(--bg2);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}

.testimonials-section .section-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 8px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}

.testimonials-section .section-title span { color: var(--orange); }

.testimonials-section .section-subtitle {
  font-family: var(--font);
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  display: block;
}

/* USP badges */
.usp-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.usp-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,123,32,0.08);
  border: 1px solid rgba(244,123,32,0.2);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
}
.usp-badge::before { content: '◆'; font-size: 0.45rem; }

/* Counter row */
.counter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.counter-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
}
.counter-num {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.counter-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card base */
.tcard {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  animation: tcardUp 0.6s ease forwards;
}
.tcard:hover { border-color: var(--orange); transform: translateY(-3px); }
.tcard::before {
  content: '\201C';
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  opacity: 0.06;
  position: absolute;
  top: -1rem; left: 0.75rem;
  pointer-events: none;
}

.tcard.wide    { grid-column: span 7; }
.tcard.medium  { grid-column: span 5; }
.tcard.half    { grid-column: span 6; }
.tcard.third   { grid-column: span 4; }
.tcard.full    { grid-column: span 12; }

.tcard.highlight {
  background: var(--bg2);
  border-color: rgba(244,123,32,0.4);
  border-width: 1.5px;
}
.tcard.result-highlight {
  background: linear-gradient(135deg, rgba(244,123,32,0.08), rgba(244,123,32,0.02));
  border-color: rgba(244,123,32,0.35);
}
.tcard.result-highlight blockquote em { font-style: italic; color: var(--orange); }

/* Stars */
.tcard-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.tstar { color: var(--orange); font-size: 0.9rem; }

/* Quote */
.tcard blockquote {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  flex: 1;
}
.tcard.highlight blockquote { font-size: 16px; }

/* Author */
.tcard-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.author-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(244,123,32,0.1);
  border: 1.5px solid rgba(244,123,32,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}
.author-name { font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--text); }
.author-meta { font-family: var(--font); font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* Tag */
.tcard-tag {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
}

/* CTA card */
.tcard-cta {
  text-align: center;
  padding: 3rem 2rem;
  border-style: dashed;
  border-color: rgba(244,123,32,0.3);
  background: rgba(244,123,32,0.04);
  align-items: center;
  justify-content: center;
}
.tcard-cta::before { display: none; }
.cta-eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-title {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.cta-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Animations */
@keyframes tcardUp {
  to { opacity: 1; transform: translateY(0); }
}
.tcard:nth-child(1)  { animation-delay: 0.05s; }
.tcard:nth-child(2)  { animation-delay: 0.12s; }
.tcard:nth-child(3)  { animation-delay: 0.19s; }
.tcard:nth-child(4)  { animation-delay: 0.26s; }
.tcard:nth-child(5)  { animation-delay: 0.33s; }
.tcard:nth-child(6)  { animation-delay: 0.40s; }
.tcard:nth-child(7)  { animation-delay: 0.47s; }
.tcard:nth-child(8)  { animation-delay: 0.54s; }
.tcard:nth-child(9)  { animation-delay: 0.61s; }
.tcard:nth-child(10) { animation-delay: 0.68s; }

/* ── CTA BANNER ── */
.cta-banner-section {
  background: linear-gradient(135deg, rgba(244,123,32,0.08) 0%, rgba(244,123,32,0.03) 100%);
  border-top: 1.5px solid rgba(244,123,32,0.35);
  border-bottom: 1.5px solid rgba(244,123,32,0.35);
  padding: 80px 0;
  text-align: center;
}
.cta-banner-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.cta-banner-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* ── FAQ ── */
.faq { }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── KONTAKT ── */
.kontakt { background: var(--bg2); }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.kontakt-left h2 { margin-bottom: 12px; }
.kontakt-left p { color: var(--text-muted); margin-bottom: 32px; font-size: 17px; }
.wa-btn-wrap { margin-bottom: 20px; }
.kontakt-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.kontakt-info {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.kontakt-info h3 { margin-bottom: 20px; font-size: 18px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(244,123,32,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.info-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.info-value { font-size: 14px; font-weight: 500; }
.info-value a:hover { color: var(--orange); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img { height: 28px; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-powered { font-size: 11px; color: var(--border); margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .calc-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { flex-direction: row; justify-content: center; }
  .about-portrait { width: 220px; height: 270px; }
  .about-action { width: 160px; height: 120px; }
}

@media (max-width: 900px) {
  .tcard.wide, .tcard.medium { grid-column: span 12; }
  .tcard.half { grid-column: span 12; }
  .tcard.third { grid-column: span 12; }
  .counter-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 80px 0 40px; }
  .hero-horse { opacity: 0.07; width: 90vw; right: -20%; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
  .tcard.wide, .tcard.medium, .tcard.half, .tcard.third { grid-column: span 12; }
  .counter-row { grid-template-columns: 1fr; }
  .usp-row { gap: 0.6rem; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .about-imgs { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .kontakt-left .btn { width: 100%; justify-content: center; }
}

/* ── SECTION DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
  max-width: 300px;
}

/* ── EINZUGSGEBIET / MAP ── */
.einzugsgebiet { background: var(--bg2); }

.map-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-zone1 {
  background: rgba(245, 166, 35, 0.5);
  border: 2px solid #f5a623;
}

.legend-zone2 {
  background: rgba(224, 123, 32, 0.25);
  border: 2px solid #e07b20;
}

.map-container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

#bhs-map {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  border: 1px solid #222;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  #bhs-map { height: 320px; }
}

/* Leaflet dark mode */
.leaflet-control-zoom a { background: #1e1e1e !important; color: #f0f0f0 !important; border-color: #333 !important; }
.leaflet-popup-content-wrapper { background: #1e1e1e !important; color: #f0f0f0 !important; border-radius: 8px !important; border: 1px solid #333 !important; box-shadow: 0 4px 16px rgba(0,0,0,0.5) !important; }
.leaflet-popup-tip { background: #1e1e1e !important; }
.leaflet-popup-close-button { color: #888 !important; }
.map-tooltip { background: #1e1e1e !important; color: #999 !important; border: 1px solid #333 !important; border-radius: 4px !important; font-size: 11px !important; padding: 2px 8px !important; box-shadow: none !important; }

/* ── BLOG TEASER (on main page) ── */
.blog-teaser { border-top: 1px solid var(--border); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.blog-card {
  background: #161616;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover { border-color: #F47B20; transform: translateY(-3px); }

.blog-card-body { padding: 24px; }

.blog-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #F47B20;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; color: #f0f0f0; }

.blog-card p { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 16px; }

.blog-card-link { font-size: 13px; font-weight: 600; color: #F47B20; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .map-container { height: 300px; }
}
