/* ═══════════════════════════════════════════════════════════════
   Handwerksstrategie.de – Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0d1117;
  --ink-80: rgba(13,17,23,0.8);
  --ink-50: rgba(13,17,23,0.5);
  --ink-20: rgba(13,17,23,0.12);
  --amber: #c9640a;
  --amber-light: #f07822;
  --surface: #ffffff;
  --surface-2: #f7f7f5;
  --surface-3: #efefec;
  --border: rgba(13,17,23,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV (Hauptseite – fixed, transparent → weiß beim Scrollen) ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 6%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
nav:not(.scrolled) ul a { color: rgba(255,255,255,0.82); }
nav:not(.scrolled) ul a:hover { color: #ffffff; }
nav:not(.scrolled) ul a.active { color: #ffffff; font-weight: 600; }
nav:not(.scrolled) .nav-cta { background: var(--amber) !important; color: #fff !important; }
nav:not(.scrolled) .hamburger span { background: #ffffff; }
nav:not(.scrolled) .nav-logo-img { filter: brightness(0) invert(1); }

/* NAV (Unterseiten – statisch, kein Fixed) */
.nav-static {
  position: static;
  background: var(--surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  justify-content: flex-start;
}

.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo em { font-style: normal; color: var(--amber); }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
nav ul a {
  color: var(--ink-80);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--ink); }
nav ul a.active { color: var(--ink); font-weight: 600; }

.nav-cta {
  background: var(--ink) !important;
  color: var(--surface) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #2a2f36 !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.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: 80px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 6%;
  flex-direction: column;
  gap: 0;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--ink-80);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--amber); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: #151d29;
  padding: 0 6%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-strip-inner {
  display: flex;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex: 1;
  min-width: 0;
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-size: clamp(0.95rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}
.trust-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.4px;
  margin-top: 0.35rem;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(rgba(255,255,255,0.035) 1.5px, transparent 1.5px) 0 0 / 28px 28px,
    #1e2a3a;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,100,10,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--amber-light);
}
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  color: var(--surface);
  margin-bottom: 1.8rem;
}
.hero h1 span { color: var(--amber-light); }
.hero-footnote {
  margin-top: 1.8rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-footnote::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.hero-footnote strong { color: rgba(240,120,34,0.85); font-weight: 600; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero-problems {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.hero-problem {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  z-index: 1;
}
.scroll-hint:hover { color: rgba(255,255,255,0.6); }
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,100,10,0.32);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,100,10,0.4); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--surface); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover { background: #2a2f36; }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #fff;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-download:hover { background: var(--amber-light); }

/* ── SECTION SHARED ── */
section { padding: 64px 6%; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
h2.section-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--ink-50);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ── ROI HINT ── */
.roi-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: #fffbf5;
  border: 1px solid rgba(201,100,10,0.2);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 0.9rem 1.2rem;
  font-size: 0.875rem;
  color: var(--ink-50);
  margin-bottom: 2.5rem;
  max-width: 680px;
}
.roi-hint svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.roi-hint strong { color: var(--ink); }

/* ── LEISTUNGEN ── */
#leistungen { background: var(--surface-2); }
.leistungen-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s, box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { background: var(--ink); box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: translateY(-2px); }
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
}
.pricing-card.featured::after {
  content: 'Empfehlung';
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--amber);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.pricing-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 1.5rem;
}
.pricing-card:hover .pricing-num { color: rgba(255,255,255,0.4); }
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.pricing-card:hover h3 { color: var(--surface); }
.price-tag {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--amber);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.price-tag small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-50);
  letter-spacing: 0;
  transition: color 0.2s;
}
.pricing-card:hover .price-tag small { color: rgba(255,255,255,0.4); }
.pricing-desc {
  font-size: 0.875rem;
  color: var(--ink-50);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  transition: color 0.2s;
}
.pricing-card:hover .pricing-desc { color: rgba(255,255,255,0.55); }
.pricing-list {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-list li {
  font-size: 0.85rem;
  color: var(--ink-80);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s, border-color 0.2s;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-card:hover .pricing-list li {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.08);
}
.pricing-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.pricing-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.pricing-link:hover { gap: 10px; }
.pricing-card:hover .pricing-link { color: var(--amber-light); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--ink);
  padding: 3rem 6%;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 0.3rem;
}
.cta-strip-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
}

/* ── PROZESS ── */
#prozess { background: var(--surface); }
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 4rem;
}
.prozess-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.prozess-step:last-child { border-right: none; }
.prozess-step:hover { background: var(--ink); }
.prozess-step:hover h3 { color: var(--surface); }
.prozess-step:hover p { color: rgba(255,255,255,0.55); }
.prozess-num {
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -4px;
  color: var(--ink-20);
  line-height: 0.9;
  margin-bottom: 1.4rem;
  transition: color 0.2s;
}
.prozess-step:first-child .prozess-num { color: rgba(201,100,10,0.18); }
.prozess-grid .prozess-step:hover .prozess-num { color: rgba(255,255,255,0.25); }
.prozess-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.prozess-step p {
  font-size: 0.9rem;
  color: var(--ink-50);
  line-height: 1.7;
}
.prozess-connector {
  position: absolute;
  top: 2.5rem;
  right: -12px;
  width: 24px; height: 24px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.prozess-connector svg { color: white; }
.prozess-step:last-child .prozess-connector { display: none; }

/* ── ÜBER MICH ── */
#ueber { background: var(--surface); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ueber-portrait {
  aspect-ratio: 1/1;
  width: 260px;
  background: linear-gradient(140deg, #1a2540 0%, #0d1117 100%);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.portrait-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.portrait-initials {
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  letter-spacing: -6px;
  user-select: none;
  line-height: 1;
}
.ueber-portrait-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.ueber-portrait-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--surface);
  letter-spacing: -0.3px;
}
.ueber-portrait-title {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-item {
  display: flex;
  gap: 0.9rem;
  position: relative;
}
.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
}
.tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink-20);
  border: 2px solid var(--ink-20);
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.2s;
}
.tl-item:not(:last-child) .tl-marker::after {
  content: '';
  flex: 1;
  width: 2px;
  background: var(--ink-20);
  margin: 4px 0;
  min-height: 18px;
}
.tl-current .tl-dot {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201,100,10,0.15);
  width: 12px; height: 12px;
}
.tl-start .tl-dot {
  background: var(--ink-50);
  border-color: var(--ink-50);
}
.tl-content {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.2rem;
  font-size: 0.85rem;
}
.tl-item:last-child .tl-content { padding-bottom: 0; }
.tl-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2px;
}
.tl-start .tl-label { color: var(--ink-50); }
.tl-content strong { font-weight: 600; color: var(--ink); line-height: 1.3; }
.tl-content span { color: var(--ink-50); font-size: 0.78rem; margin-top: 1px; }
.ueber-right p {
  color: var(--ink-50);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.ueber-right p strong { color: var(--ink); font-weight: 600; }
.ueber-pullquote {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  line-height: 1.6 !important;
  border-left: 3px solid var(--amber);
  padding: 0.8rem 1.4rem !important;
  margin: 1.8rem 0 !important;
  background: rgba(201,100,10,0.04);
  border-radius: 0 6px 6px 0;
}
.ueber-divider {
  width: 40px; height: 2px;
  background: var(--amber);
  margin: 2rem 0;
}
.price-comparison {
  background: var(--surface-2);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.price-comparison-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 1rem;
}
.price-comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.price-comparison-row:last-child { border-bottom: none; }
.price-comparison-row .label { color: var(--ink-50); }
.price-comparison-row .val { font-weight: 700; color: var(--ink); }
.price-comparison-row .val.highlight { color: var(--amber); }
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-50);
  text-decoration: none;
  transition: color 0.2s;
}
.linkedin-link:hover { color: #0a66c2; }

/* ── LEAD MAGNET ── */
.lead-magnet {
  background: var(--ink);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.lead-magnet-left { flex: 1; min-width: 240px; }
.lead-magnet-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.lead-magnet h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--surface);
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}
.lead-magnet p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── FAQ ── */
#faq { background: var(--surface-2); }
.faq-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child,
.faq-item:nth-child(2) { border-top: 1px solid var(--border); }
@media (max-width: 700px) {
  .faq-list { grid-template-columns: 1fr; }
  .faq-item:nth-child(2) { border-top: none; }
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  gap: 1rem;
  user-select: none;
  transition: color 0.2s, padding-left 0.25s;
}
.faq-question:hover { color: var(--amber); padding-left: 0.4rem; }
.faq-item.open .faq-question { color: var(--ink); padding-left: 0.4rem; }
.faq-item.open { border-left: 2px solid var(--amber); padding-left: 0; margin-left: -2px; }
.faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, border-color 0.2s;
  color: var(--ink-50);
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--amber); color: var(--amber); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--ink-50);
  line-height: 1.8;
  padding-bottom: 1.3rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── KONTAKT ── */
#kontakt { background: var(--surface-2); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.kontakt-left h2 { margin-bottom: 1rem; }
.kontakt-left .section-sub { margin-bottom: 2.5rem; }
.kontakt-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kontakt-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--ink-80);
}
.kontakt-detail-item svg {
  width: 16px; height: 16px;
  color: var(--amber);
  flex-shrink: 0;
}
.contact-form {
  background: var(--surface);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-50);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201,100,10,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-privacy {
  font-size: 0.75rem;
  color: var(--ink-50);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.form-privacy a { color: var(--ink-50); text-decoration: underline; }
.form-privacy a:hover { color: var(--ink); }
.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--surface);
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-top: 0.5rem;
  box-shadow: 0 4px 14px rgba(201,100,10,0.28);
}
.form-submit:hover { background: var(--amber-light); box-shadow: 0 6px 20px rgba(201,100,10,0.38); transform: translateY(-1px); }
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) { border-color: #d0291a; }
.form-group input:valid:not(:placeholder-shown) { border-color: #2d7a3a; }

/* ── FOOTER (Hauptseite) ── */
footer {
  background: var(--ink);
  padding: 40px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.footer-logo em { font-style: normal; color: var(--amber); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  width: 100%;
}
.footer-assets-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.12);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.footer-assets-link:hover { color: rgba(255,255,255,0.4); }

/* ── FOOTER (Unterseiten – hell) ── */
.impressum-form { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 1rem; max-width: 560px; }
.impressum-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.impressum-form input,
.impressum-form textarea { width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border); border-radius: 6px; font-family: inherit; font-size: 0.9rem; background: var(--surface-2); color: var(--ink); box-sizing: border-box; }
.impressum-form input:focus,
.impressum-form textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(201,100,10,0.1); }
.impressum-form textarea { resize: vertical; }
.impressum-form-btn { align-self: flex-start; background: var(--ink); color: #fff; border: none; padding: 0.7rem 1.4rem; border-radius: 6px; font-size: 0.9rem; font-weight: 600; font-family: inherit; cursor: pointer; transition: background 0.2s; }
.impressum-form-btn:hover { background: var(--amber); }
.impressum-form-note { font-size: 0.85rem; }
@media (max-width: 600px) { .impressum-form-row { grid-template-columns: 1fr; } }

footer.footer-light {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 24px 6%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-50);
  display: block;
}
footer.footer-light a { color: var(--amber); text-decoration: none; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-top: 2px solid var(--amber);
  padding: 1rem 6%;
  z-index: 300;
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.cookie-banner.hidden { transform: translateY(110%); pointer-events: none; visibility: hidden; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner p strong { color: rgba(255,255,255,0.9); }
.cookie-banner a { color: var(--amber); text-decoration: underline; }
.cookie-accept {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201,100,10,0.3);
}
.cookie-accept:hover { background: var(--amber-light); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--surface);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-2px); }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── UNTERSEITEN (Impressum, Datenschutz, Danke) ── */
.page-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 6% 100px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--ink-50);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--ink); text-decoration: none; }
.page-h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}
.page-subtitle {
  color: var(--ink-50);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}
.page-h2 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
  margin: 2.5rem 0 0.8rem;
}
.page-p { color: var(--ink-50); font-size: 0.95rem; margin-bottom: 0.8rem; }
.page-p strong { color: var(--ink); font-weight: 600; }
.page-ul { margin: 0.5rem 0 0.8rem 1.4rem; }
.page-ul li { color: var(--ink-50); font-size: 0.95rem; margin-bottom: 0.4rem; }
.page-ul li strong { color: var(--ink); font-weight: 600; }
.divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
.infobox {
  background: var(--surface-2);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--ink-50);
}
.infobox strong { color: var(--ink); }

/* ── DANKE-SEITE ── */
.danke-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.danke-icon {
  width: 72px; height: 72px;
  background: #e6f4ea;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
}
.danke-icon svg { color: #1a6e32; }
.danke-h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.danke-sub {
  font-size: 1rem;
  color: var(--ink-50);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.danke-box {
  background: var(--surface-2);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--ink-50);
}
.danke-box strong { color: var(--ink); display: block; margin-bottom: 0.3rem; }
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-back:hover { background: #2a2f36; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; gap: 3rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .leistungen-header { flex-direction: column; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  footer { flex-direction: column; align-items: flex-start; }
  .ueber-portrait { width: 100%; max-width: 340px; }
  .prozess-grid { grid-template-columns: 1fr; }
  .prozess-step { border-right: none; border-bottom: 1px solid var(--border); }
  .prozess-step:last-child { border-bottom: none; }
  .prozess-connector { display: none; }
}

@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .hero { padding: 100px 5% 60px; min-height: 100svh; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); letter-spacing: -1.5px; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary { justify-content: center; padding: 16px 24px; font-size: 1rem; }
  .btn-ghost { justify-content: center; }
  .hero-footnote { flex-wrap: wrap; gap: 0.3rem 0.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
  .back-to-top { bottom: 1.2rem; right: 1.2rem; }
  h2.section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .pricing-card { padding: 2rem 1.5rem; }
  .price-tag { font-size: 1.5rem; }
  .ueber-portrait { width: 100%; max-width: 280px; }
  footer { gap: 1rem; }
  .lead-magnet { flex-direction: column; }
  .btn-download { width: 100%; justify-content: center; }
  .trust-num { font-size: clamp(1.6rem, 6vw, 2rem); }
  .trust-label { font-size: 0.7rem; }
  .faq-item.open { margin-left: 0; padding-left: 0.8rem; }
}
