/* Lokale Landingpages (Softwareentwicklung / App / KI Automatisierung Gummersbach).
   Nutzt die globalen Tokens aus style.css – keine eigenen Farben. */

.lp-wrap { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }

.lp-hero { padding: 56px 5vw 48px; }
.lp-hero .lp-eyebrow {
  display: inline-block; margin-bottom: 14px; padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.22); border-radius: 99px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82); font-size: 12px; font-weight: 600;
  letter-spacing: .02em; position: relative; z-index: 1;
}
.lp-hero h1 {
  position: relative; z-index: 1;
  font-size: clamp(26px, 4vw, 40px); line-height: 1.15; font-weight: 800;
  color: #fff; margin-bottom: 14px; max-width: 22ch;
}
.lp-hero .lp-lead {
  position: relative; z-index: 1;
  color: rgba(255,255,255,.78); font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65; max-width: 62ch;
}
.lp-hero-actions { position: relative; z-index: 1; margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: transform .15s var(--ease-out), background .15s, border-color .15s;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn-primary { background: var(--brand); color: #fff; border: 1px solid var(--brand); }
.lp-btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.lp-btn-ghost { background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.lp-btn-ghost:hover { background: rgba(255,255,255,.14); }

.lp-section { padding: 52px 0; border-bottom: 1px solid var(--line); }
.lp-section:last-of-type { border-bottom: 0; }
.lp-section h2 {
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; line-height: 1.25;
  color: var(--text); margin-bottom: 12px;
}
.lp-section > p { color: var(--muted); font-size: 15px; line-height: 1.75; max-width: 72ch; }
.lp-section > p + p { margin-top: 14px; }

.lp-grid { display: grid; gap: 16px; margin-top: 26px; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.lp-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px; box-shadow: var(--shadow-sm);
  transition: border-color .15s, box-shadow .15s, transform .15s var(--ease-out);
}
.lp-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.lp-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.lp-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

.lp-steps { counter-reset: lp-step; margin-top: 26px; display: grid; gap: 14px; }
.lp-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
}
.lp-step-no {
  flex: 0 0 28px; width: 28px; height: 28px; border-radius: 8px;
  background: var(--soft); color: var(--brand);
  font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.lp-step h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.lp-step p { font-size: 14px; line-height: 1.6; color: var(--muted); }

.lp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.lp-tag {
  padding: 6px 12px; border-radius: 99px; background: var(--bg2);
  border: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 500;
}

.lp-price {
  margin-top: 24px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px;
  background: var(--soft); border: 1px solid #dbeafe; border-radius: 14px; padding: 20px 22px;
}
.lp-price strong { font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: var(--brand-dark); }
.lp-price span { font-size: 14px; color: var(--muted); line-height: 1.6; }

.lp-faq { margin-top: 24px; display: grid; gap: 10px; }
.lp-faq details {
  border: 1px solid var(--line); border-radius: 12px; background: var(--card); overflow: hidden;
}
.lp-faq summary {
  cursor: pointer; list-style: none; padding: 16px 18px;
  font-size: 15px; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+"; color: var(--brand); font-size: 20px; font-weight: 400; line-height: 1; flex-shrink: 0;
}
.lp-faq details[open] summary::after { content: "\2013"; }
.lp-faq details p { padding: 0 18px 18px; font-size: 14px; line-height: 1.75; color: var(--muted); }

.lp-region { margin-top: 20px; font-size: 14px; line-height: 1.8; color: var(--muted); }
.lp-region strong { color: var(--text); font-weight: 600; }

.lp-related { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.lp-related a {
  padding: 9px 15px; border-radius: 10px; background: var(--bg2); border: 1px solid var(--line);
  color: var(--text); font-size: 13px; font-weight: 600; text-decoration: none;
  transition: border-color .15s, background .15s;
}
.lp-related a:hover { border-color: var(--brand); background: var(--soft); }

.lp-cta {
  margin: 44px 0 56px; background: var(--hero-bg); border-radius: 18px;
  padding: 36px 32px; text-align: center;
}
.lp-cta h2 { color: #fff; font-size: clamp(19px, 2.4vw, 26px); font-weight: 700; margin-bottom: 10px; }
.lp-cta p { color: rgba(255,255,255,.74); font-size: 15px; line-height: 1.65; max-width: 56ch; margin: 0 auto 22px; }
.lp-cta .lp-hero-actions { justify-content: center; margin-top: 0; }

.lp-crumb { padding: 16px 5vw 0; font-size: 13px; color: var(--muted); }
.lp-crumb a { color: var(--muted); text-decoration: none; }
.lp-crumb a:hover { color: var(--brand); text-decoration: underline; }

@media (max-width: 640px) {
  .lp-hero { padding: 40px 5vw 36px; }
  .lp-section { padding: 40px 0; }
  .lp-cta { padding: 30px 22px; border-radius: 14px; }
}
