@font-face {
  font-family: "Inter";
  src: url("/lp/assets/fonts/inter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/lp/assets/fonts/inter-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/lp/assets/fonts/inter-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/lp/assets/fonts/inter-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* 800/900 weights fall back to bold */
@font-face {
  font-family: "Inter";
  src: url("/lp/assets/fonts/inter-bold.woff2") format("woff2");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --primary: #F47A1A;
  --primary-dark: #d96b15;
  --dark: #0A0A0A;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --container-max: 1280px;
  --container-narrow: 900px;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); }

/* ──────────────────────────────────────
   FADE IN
────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }

/* ──────────────────────────────────────
   NAV
────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo { height: 2.5rem; object-fit: contain; }
.nav__brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: none;
}
.nav__links {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}
.nav__links a:hover { color: var(--primary); transition: color 0.2s; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--primary); }
.nav__phone svg { color: var(--primary); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(244,122,26,0.25);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(244,122,26,0.35);
}

@media (min-width: 640px) { .nav__brand-name { display: block; } }
@media (min-width: 768px) { .nav__links { display: flex; } }
@media (min-width: 1024px) { .nav__phone { display: flex; } }

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  padding-top: 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.8) 60%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.hero__content { max-width: 48rem; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.6s ease forwards;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.badge--primary {
  background: rgba(244,122,26,0.2);
  border: 1px solid rgba(244,122,26,0.3);
  color: var(--primary);
}
.badge--light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.hero__h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.6s 0.1s ease both;
}
.hero__h1 span { color: var(--primary); }
.hero__sub {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  max-width: 38rem;
  font-weight: 500;
  line-height: 1.65;
  animation: heroFadeUp 0.6s 0.2s ease both;
}
.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: heroFadeUp 0.6s 0.3s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────
   CTA BLOCK
────────────────────────────────────── */
.cta-block { display: flex; flex-direction: column; gap: 1rem; }
.cta-block--center { align-items: center; text-align: center; }
.cta-block--left { align-items: flex-start; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  height: auto;
  padding: 0.75rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  background: linear-gradient(135deg, #F47A1A 0%, #d96b15 100%);
  box-shadow: 0 8px 24px rgba(244,122,26,0.30);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}
.btn-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(244,122,26,0.40);
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.cta-trust--dark { color: #d1d5db; }
.cta-trust--light { color: var(--gray-500); }
.cta-block--center .cta-trust { justify-content: center; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.cta-phone svg { color: var(--primary); }
.cta-phone--dark { color: #9ca3af; }
.cta-phone--dark:hover,
.cta-phone--dark:active { color: var(--white); }
.cta-phone--light { color: var(--gray-500); }
.cta-phone--light:hover,
.cta-phone--light:active { color: var(--dark); }

/* ──────────────────────────────────────
   SCROLL HINT
────────────────────────────────────── */
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.scroll-hint:hover { color: rgba(255,255,255,0.8); }

/* ──────────────────────────────────────
   STATS STRIP
────────────────────────────────────── */
.stats { padding: 2.5rem 0; background: var(--white); border-bottom: 1px solid var(--gray-100); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 1rem 0; }
.stat__value {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1;
}
.stat__label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

/* ──────────────────────────────────────
   LEISTUNGEN
────────────────────────────────────── */
.leistungen {
  padding: 6rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.leistungen__grid {
  display: grid;
  gap: 4rem;
}
.leistungen__copy h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.leistungen__copy h2 span { color: var(--primary); }
.leistungen__copy p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.leistungen__list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.leistungen__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-800);
}
.leistungen__list li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-col { display: flex; flex-direction: column; gap: 1rem; }
.service-col--offset { margin-top: 2rem; }
.card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.5rem;
}
.card--dark { background: var(--dark); }
.card__icon { margin-bottom: 1rem; color: var(--primary); }
.card__icon svg { width: 2.5rem; height: 2.5rem; }
.card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.card--dark .card__title { color: var(--white); }
.card__desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.card--dark .card__desc { color: var(--gray-400); }
@media (min-width: 768px) { .leistungen__grid { grid-template-columns: 1fr 1fr; align-items: center; } }

/* ──────────────────────────────────────
   CTA SECTION (mid-page)
────────────────────────────────────── */
.cta-section {
  padding: 4rem 0;
  text-align: center;
}
.cta-section--white { background: var(--white); border-bottom: 1px solid var(--gray-100); }
.cta-section--gray { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.cta-section--dark { background: var(--dark); }
.cta-section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.cta-section__title {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.cta-section--dark .cta-section__title { color: var(--white); }
.cta-section__sub {
  font-size: 1.0625rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

/* ──────────────────────────────────────
   REFERENZEN
────────────────────────────────────── */
.referenzen { padding: 6rem 0; background: var(--white); }
.section-header { text-align: center; max-width: 44rem; margin: 0 auto 4rem; }
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-header p { font-size: 1.0625rem; color: var(--gray-600); }
.ref-grid {
  display: grid;
  gap: 1.5rem;
}
.ref-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  aspect-ratio: 4/3;
}
.ref-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.ref-card:hover img { transform: scale(1.05); }
.ref-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.ref-card__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.ref-card__title { color: var(--white); font-size: 1.375rem; font-weight: 700; }
@media (min-width: 768px) { .ref-grid { grid-template-columns: 1fr 1fr; } }

/* ──────────────────────────────────────
   ABLAUF
────────────────────────────────────── */
.ablauf {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--white);
}
.ablauf__grid { display: grid; gap: 4rem; }
.ablauf__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.ablauf__sub { font-size: 1.125rem; color: var(--gray-400); margin-bottom: 2.5rem; }
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 1.5rem; position: relative; }
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 2.5rem;
  bottom: -2rem;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.375rem; }
.step__desc { color: var(--gray-400); font-size: 0.9375rem; line-height: 1.65; }
.vorteile-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: none;
}
.vorteile-box h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 1.5rem; }
.vorteile-list { display: flex; flex-direction: column; gap: 1.5rem; list-style: none; }
.vorteil { display: flex; gap: 1rem; align-items: flex-start; }
.vorteil__icon {
  background: rgba(244,122,26,0.2);
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
}
.vorteil__icon svg { width: 1.5rem; height: 1.5rem; }
.vorteil__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.vorteil__desc { color: var(--gray-400); font-size: 0.9rem; }
.vorteile-cta {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.btn-cta-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #F47A1A 0%, #d96b15 100%);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-full:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(244,122,26,0.35);
}
@media (min-width: 768px) {
  .ablauf__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .vorteile-box { display: block; }
}

/* ──────────────────────────────────────
   FAQ
────────────────────────────────────── */
.faq { padding: 6rem 0; background: var(--gray-50); }
.faq-list {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: left;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  gap: 1rem;
}
.faq-trigger:hover { color: var(--primary); }
.faq-trigger svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray-400);
}
.faq-item.open .faq-trigger svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ──────────────────────────────────────
   FINAL CTA
────────────────────────────────────── */
.final-cta {
  padding: 6rem 0;
  background: var(--dark);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.final-cta p {
  font-size: 1.0625rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo { height: 2rem; object-fit: contain; filter: brightness(0) invert(1); }
.footer__brand-name { font-weight: 700; color: var(--white); font-size: 1.125rem; }
.footer__desc { font-size: 0.875rem; line-height: 1.7; max-width: 22rem; }
.footer__col-title { color: var(--white); font-weight: 700; margin-bottom: 1rem; }
.footer__list { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer__list a:hover { color: var(--primary); transition: color 0.2s; }
.footer__list li:first-child a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ──────────────────────────────────────
   RESPONSIVE HELPERS
────────────────────────────────────── */
@media (min-width: 640px) {
  .hero__badges { gap: 0.75rem; }
}
@media (min-width: 1024px) {
  .hero { padding-top: 0; }
  .hero__inner { padding: 8rem 0; }
}

@media (min-width: 1280px) {
  .container { padding: 0 2rem; }
  .hero__h1 { letter-spacing: -0.04em; }
  .leistungen__grid { gap: 6rem; }
  .ablauf__grid { gap: 6rem; }
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

/* ──────────────────────────────────────
   DARK SECTION OVERRIDES
   (final-cta has dark bg but light-variant classes)
────────────────────────────────────── */
.final-cta .cta-trust--light {
  color: #9ca3af;
}
.final-cta .cta-phone--light {
  color: #9ca3af;
}
.final-cta .cta-phone--light:hover,
.final-cta .cta-phone--light:active {
  color: var(--white);
}

/* ──────────────────────────────────────
   MOBILE IMPROVEMENTS
────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  .scroll-hint {
    display: none;
  }
}
