
/* ============ Reset ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

body {
  font-family: var(--font-used);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============ Utility ============ */
.lp-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 56px 0;
}

.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--main_primary);
  background: var(--chip);
  border: 1px solid rgba(239,181,9,.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.2px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.6;
}

.section-sub.centered {
  margin: 0 auto;
}

/* ============ Lightbox ============ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: zoom-out;
  padding: 24px;
}

.lightbox-overlay.show {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  object-fit: contain;
}

.feature-screenshot.clickable {
  cursor: zoom-in;
  transition: box-shadow .2s ease;
}

.feature-screenshot.clickable:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

/* ============ Buttons ============ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-used);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--button-border);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-btn-primary {
  background: var(--main_primary);
  color: var(--text);
  border-color: rgba(0,0,0,.08);
}

.lp-btn-secondary {
  background: var(--white);
  color: var(--text);
}

.lp-btn-light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}

.lp-btn-light:hover {
  background: rgba(255,255,255,.25);
}

/* ============ Navigation ============ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.lp-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.lp-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--background-primary);
}

.lp-logo span {
  color: var(--main_primary);
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .15s;
}

.lp-nav-links a:hover {
  color: var(--text-primary);
}

.lp-nav .lp-btn {
  padding: 10px 22px;
  font-size: 13.5px;
}

/* ============ HERO ============ */
.hero {
  background: var(--background-primary);
  padding: 100px 24px 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(239,181,9,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,44,84,.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(239,181,9,.3);
  background: rgba(239,181,9,.1);
  color: var(--main_primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--main_primary);
  box-shadow: 0 0 0 3px rgba(239,181,9,.2);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.5px;
  color: #fff;
  max-width: 720px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--main_primary);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 500;
}

.hero-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(239,181,9,.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-benefit-icon svg {
  width: 15px;
  height: 15px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============ PROBLEM ============ */
.problem {
  background: #fafaf8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.problem-card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.problem-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(182,0,0,.08);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.problem-icon svg {
  width: 20px;
  height: 20px;
  color: var(--danger);
}

.problem-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============ LÖSUNG ============ */
.solution-box {
  margin-top: 36px;
  border: 1px solid rgba(239,181,9,.25);
  background: linear-gradient(135deg, rgba(239,181,9,.04) 0%, rgba(239,181,9,.01) 100%);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.solution-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

.solution-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* Animierte Datenpunkte */
@keyframes flowRight {
  0%   { opacity: 0; transform: translateX(-12px); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(12px); }
}

@keyframes flowLeft {
  0%   { opacity: 0; transform: translateX(12px); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(239,181,9,.3)); }
  50%      { filter: drop-shadow(0 0 12px rgba(239,181,9,.6)); }
}

.data-dot-right {
  animation: flowRight 2.2s ease-in-out infinite;
}

.data-dot-right.d2 { animation-delay: .7s; }
.data-dot-right.d3 { animation-delay: 1.4s; }

.data-dot-left {
  animation: flowLeft 2.2s ease-in-out infinite;
}

.data-dot-left.d2 { animation-delay: .7s; }
.data-dot-left.d3 { animation-delay: 1.4s; }

.mavabit-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* ============ FUNKTIONEN ============ */
.features {
  background: var(--white);
}

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

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.feature-card:hover {
  box-shadow: 0 14px 42px rgba(0,0,0,.07);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--chip);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--main_primary);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.feature-screenshot {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #f5f5f3;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,.25);
  font-size: 12px;
  font-weight: 600;
}

.feature-screenshot-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: .35;
}

.feature-benefit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgb(0, 140, 7);
  background: rgba(0,181,9,.08);
  padding: 5px 12px;
  border-radius: 999px;
}

.feature-benefit svg {
  width: 13px;
  height: 13px;
}

/* ============ SO FUNKTIONIERT ES ============ */
.steps {
  background: var(--background-primary);
  color: #fff;
}

.steps .section-label {
  color: var(--main_primary);
  background: rgba(239,181,9,.12);
  border-color: rgba(239,181,9,.25);
}

.steps .section-title {
  color: #fff;
}

.steps .section-sub {
  color: rgba(255,255,255,.55);
}

.steps-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--main_primary);
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.step-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}

/* ============ VORTEILE ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s ease;
}

.benefit-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--chip);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--main_primary);
}

.benefit-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============ FÜR WEN ============ */
.audience {
  background: #fafaf8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.audience-card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
}

.audience-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--background-primary);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.audience-icon svg {
  width: 24px;
  height: 24px;
  color: var(--main_primary);
}

.audience-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.audience-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 740px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-used);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.faq-q:hover {
  color: var(--main_primary);
}

.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .2s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
  color: var(--main_primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============ CTA FINAL ============ */
.cta-final {
  background: var(--background-primary);
  text-align: center;
}

.cta-final .section-title {
  color: #fff;
}

.cta-final p {
  color: rgba(255,255,255,.55);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.cta-final-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.lp-footer {
  background: var(--background-primary);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 24px;
  text-align: center;
}

.lp-footer p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.lp-footer a {
  color: rgba(255,255,255,.5);
  transition: color .15s;
}

.lp-footer a:hover {
  color: var(--main_primary);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .problem-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .solution-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px;
  }

  .section-pad {
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 64px 20px 56px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .lp-nav-links a:not(.lp-btn) {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .lp-btn {
    width: 100%;
  }

  .cta-final-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-final-actions .lp-btn {
    width: 100%;
    max-width: 320px;
  }

  .solution-visual svg {
    max-width: 100%;
  }
}