/* ==========================================================================
   LANDING PAGE STYLES – digitalinhalt.de
   Gemeinsame Styles fuer alle SEO-Landingpages.
   Scope: body.di-lp (alle LPs)
   Baut auf global.css auf (Header, Footer, Buttons, Animations).
   ========================================================================== */

/* ---------- HERO ---------- */

body.di-lp .di-lp-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  background: #06060f;
}

body.di-lp .di-lp-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

body.di-lp .di-lp-hero-headline {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary) !important;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

body.di-lp .di-lp-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary) !important;
  line-height: 1.8;
  margin: 0 0 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

body.di-lp .di-lp-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- SECTION DEFAULTS ---------- */

body.di-lp section {
  padding: 5rem 0;
}

body.di-lp .di-lp-section-headline {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary) !important;
  line-height: 1.2;
  margin: 0 0 1rem;
}

body.di-lp .di-lp-section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary) !important;
  max-width: 600px;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

/* Centered section headers */
body.di-lp .di-lp-checklist-header,
body.di-lp .di-lp-process-header,
body.di-lp .di-lp-faq-header,
body.di-lp .di-lp-services-header,
body.di-lp .di-lp-pricing-header,
body.di-lp .di-lp-usecases-header,
body.di-lp .di-lp-explainer-header {
  text-align: center;
  margin-bottom: 3rem;
}

body.di-lp .di-lp-checklist-header h2,
body.di-lp .di-lp-process-header h2,
body.di-lp .di-lp-faq-header h2,
body.di-lp .di-lp-services-header h2,
body.di-lp .di-lp-pricing-header h2,
body.di-lp .di-lp-usecases-header h2,
body.di-lp .di-lp-explainer-header h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary) !important;
  line-height: 1.2;
  margin: 0 0 1rem;
}

body.di-lp .di-lp-checklist-header p,
body.di-lp .di-lp-services-header p,
body.di-lp .di-lp-pricing-header p,
body.di-lp .di-lp-usecases-header p,
body.di-lp .di-lp-explainer-header p {
  font-size: 1.05rem;
  color: var(--text-secondary) !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- GRID (3x2 Cards) ---------- */

body.di-lp .di-lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---------- CARDS ---------- */

body.di-lp .di-lp-card {
  padding: 2rem;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

body.di-lp .di-lp-card:hover {
  transform: translateY(-4px);
}

body.di-lp .di-lp-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

body.di-lp .di-lp-card h3,
body.di-lp .di-lp-card strong {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  margin: 0 0 0.5rem;
  display: block;
}

body.di-lp .di-lp-card p {
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  line-height: 1.7;
  margin: 0;
}

/* Usecase Cards (n8n page) */
body.di-lp .di-lp-usecase {
  padding: 2rem;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

body.di-lp .di-lp-usecase:hover {
  transform: translateY(-4px);
}

body.di-lp .di-lp-usecase-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

body.di-lp .di-lp-usecase h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  margin: 0 0 0.5rem;
}

body.di-lp .di-lp-usecase p {
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  line-height: 1.7;
  margin: 0;
}

/* ---------- PROBLEM LIST (Handwerker) ---------- */

body.di-lp .di-lp-problems {
  padding: 5rem 0;
}

body.di-lp .di-lp-problems-inner {
  max-width: 800px;
  margin: 0 auto;
}

body.di-lp .di-lp-problem-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

body.di-lp .di-lp-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

body.di-lp .di-lp-problem-item:last-child {
  border-bottom: none;
}

body.di-lp .di-lp-problem-icon {
  color: #f43f5e !important;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

body.di-lp .di-lp-problem-item strong {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem;
  color: var(--text-primary) !important;
  display: block;
  margin-bottom: 0.3rem;
}

body.di-lp .di-lp-problem-item p {
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  line-height: 1.6;
  margin: 0;
}

/* ---------- PROCESS STEPS ---------- */

body.di-lp .di-lp-process-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

body.di-lp .di-lp-step {
  flex: 1;
  text-align: center;
  max-width: 320px;
}

body.di-lp .di-lp-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111125 !important;
  border: 2px solid rgba(124, 58, 237, 0.2) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7c3aed !important;
  margin-bottom: 1.2rem;
}

body.di-lp .di-lp-step h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  margin: 0 0 0.5rem;
}

body.di-lp .di-lp-step p {
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  line-height: 1.6;
  margin: 0;
}

/* ---------- PROCESS STEPS (Homepage-style, used by Audit LP) ---------- */

body.di-lp .process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

body.di-lp .process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

body.di-lp .step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #111125 !important;
  border: 2px solid rgba(124, 58, 237, 0.15) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: #7c3aed !important;
  margin-bottom: 1.5rem;
}

body.di-lp .step-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

body.di-lp .step-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f0f5 !important;
  margin: 0 0 0.6rem;
}

body.di-lp .step-desc {
  font-size: 0.95rem;
  color: #9ca3af !important;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

body.di-lp .step-desc a {
  color: #7c3aed !important;
}

body.di-lp .step-desc a:hover {
  color: #06b6d4 !important;
}

body.di-lp .process-line {
  position: absolute;
  top: 32px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: rgba(124, 58, 237, 0.15);
  z-index: 1;
}

body.di-lp .process-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body.di-lp .process-line-fill.filled {
  width: 100%;
}

/* ---------- FAQ (shared with homepage pattern) ---------- */

body.di-lp .faq-list {
  max-width: 780px;
  margin: 0 auto;
}

body.di-lp .faq-item {
  border-bottom: 1px solid rgba(124, 58, 237, 0.15) !important;
}

body.di-lp .faq-question {
  width: 100%;
  background: none !important;
  border: none !important;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

body.di-lp .faq-question span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0f0f5 !important;
  padding-right: 1rem;
}

body.di-lp .faq-icon {
  font-size: 1.4rem;
  color: #7c3aed !important;
  transition: transform 0.3s;
  flex-shrink: 0;
}

body.di-lp .faq-item.open .faq-icon {
  transform: rotate(45deg);
}

body.di-lp .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.di-lp .faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: #9ca3af !important;
  line-height: 1.8;
}

body.di-lp .faq-answer-inner a {
  color: #7c3aed !important;
}

body.di-lp .faq-item.open .faq-answer {
  max-height: 500px;
}

/* ---------- PRICING (Single Card, Handwerker) ---------- */

body.di-lp .di-lp-pricing-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
}

body.di-lp .di-lp-pricing-badge {
  background: var(--gradient-main) !important;
  color: #fff !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1.5rem;
}

body.di-lp .di-lp-pricing-from {
  font-size: 1rem;
  color: var(--text-secondary) !important;
  margin-right: 0.3rem;
}

body.di-lp .di-lp-pricing-amount {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary) !important;
}

body.di-lp .di-lp-pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted) !important;
  margin: 0.5rem 0 2rem;
}

body.di-lp .di-lp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

body.di-lp .di-lp-pricing-features li {
  font-size: 0.95rem;
  color: var(--text-secondary) !important;
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.5;
}

body.di-lp .di-lp-check {
  color: #06b6d4 !important;
  font-weight: 700;
  flex-shrink: 0;
}

body.di-lp .di-lp-pricing-cta {
  width: 100%;
  justify-content: center;
}

/* ---------- EXPLAINER (n8n) ---------- */

body.di-lp .di-lp-explainer {
  padding: 5rem 0;
  background: #0d0d1a;
}

body.di-lp .di-lp-explainer-text {
  font-size: 1.05rem;
  color: var(--text-secondary) !important;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

body.di-lp .di-lp-explainer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---------- USECASES (n8n) ---------- */

body.di-lp .di-lp-usecases {
  padding: 5rem 0;
  background: #06060f;
}

body.di-lp .di-lp-usecases-header p {
  max-width: 640px;
}

/* ---------- CTA FINAL ---------- */

body.di-lp .di-lp-cta {
  padding: 5rem 0;
}

body.di-lp .di-lp-cta-card,
body.di-lp .di-lp-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

body.di-lp .di-lp-cta-card h2,
body.di-lp .di-lp-cta-inner h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary) !important;
  line-height: 1.25;
  margin: 0 0 1rem;
}

body.di-lp .di-lp-cta-card p,
body.di-lp .di-lp-cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary) !important;
  margin: 0 0 2rem;
  line-height: 1.7;
}

body.di-lp .di-lp-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   LEAD MAGNET: KI-Checkliste
   ========================================================================== */

/* ---------- Checklisten-Grid (2x5 statt 3x2) ---------- */

body.di-lp .checkliste-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

body.di-lp .checkliste-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem !important;
}

body.di-lp .checkliste-num {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.8rem;
  font-weight: 700;
  color: #06b6d4 !important;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  flex-shrink: 0;
  line-height: 1;
}

body.di-lp .checkliste-item h3 {
  margin-bottom: 0.3rem !important;
  font-size: 1rem !important;
}

body.di-lp .checkliste-item p {
  font-size: 0.85rem !important;
}

/* ---------- E-Mail Capture ---------- */

body.di-lp .di-lp-capture {
  padding: 5rem 0;
}

body.di-lp .di-lp-capture-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

body.di-lp .di-lp-capture-text h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary) !important;
  line-height: 1.25;
  margin: 0 0 1rem;
}

body.di-lp .di-lp-capture-text p {
  font-size: 1rem;
  color: var(--text-secondary) !important;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

body.di-lp .di-lp-capture-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.di-lp .di-lp-capture-benefits li {
  font-size: 0.95rem;
  color: var(--text-secondary) !important;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

body.di-lp .di-lp-capture-benefits .di-lp-check {
  color: #06b6d4 !important;
  font-weight: 700;
}

/* Formular-Card */
body.di-lp .di-lp-capture-card {
  padding: 2.5rem;
}

body.di-lp .di-lp-capture-form .form-group {
  margin-bottom: 1.2rem;
}

body.di-lp .di-lp-capture-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary) !important;
  margin-bottom: 0.4rem;
}

body.di-lp .di-lp-capture-form .required {
  color: #f43f5e !important;
}

body.di-lp .di-lp-capture-form .form-group input[type="text"],
body.di-lp .di-lp-capture-form .form-group input[type="email"] {
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.95rem;
  color: var(--text-primary) !important;
  background: rgba(6, 6, 15, 0.6) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

body.di-lp .di-lp-capture-form .form-group input:focus {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  outline: none;
}

body.di-lp .di-lp-capture-form .form-group input::placeholder {
  color: var(--text-muted) !important;
}

/* Checkbox */
body.di-lp .di-lp-capture-form .form-group-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-muted) !important;
  cursor: pointer;
  line-height: 1.5;
}

body.di-lp .di-lp-capture-form .form-group-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #7c3aed;
  margin-top: 2px;
  flex-shrink: 0;
}

body.di-lp .di-lp-capture-form .form-group-checkbox a {
  color: var(--accent-primary) !important;
  text-decoration: underline !important;
}

/* Honeypot */
body.di-lp .di-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Submit Button */
body.di-lp .di-lp-capture-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Error */
body.di-lp .funnel-error {
  color: #f43f5e !important;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  padding: 0.6rem 1rem;
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-radius: 8px;
}

body.di-lp .di-lp-capture-form .form-group.has-error input {
  border-color: #f43f5e !important;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

/* Trust Badges unter dem Button */
body.di-lp .di-lp-capture-trust {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

body.di-lp .di-lp-capture-trust span {
  font-size: 0.75rem;
  color: var(--text-muted) !important;
  white-space: nowrap;
}

/* Erfolgs-Nachricht */
body.di-lp .di-lp-capture-success {
  text-align: center;
  padding: 2rem 0;
}

body.di-lp .di-lp-capture-success .success-icon {
  margin-bottom: 1.5rem;
}

body.di-lp .di-lp-capture-success h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  margin: 0 0 0.5rem;
}

body.di-lp .di-lp-capture-success p {
  font-size: 1rem;
  color: var(--text-secondary) !important;
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  body.di-lp .di-lp-hero {
    padding: 7rem 0 3rem;
  }

  body.di-lp .di-lp-hero-headline {
    font-size: clamp(1.7rem, 6vw, 2.4rem) !important;
  }

  body.di-lp .di-lp-grid,
  body.di-lp .di-lp-explainer-cards,
  body.di-lp .checkliste-grid {
    grid-template-columns: 1fr;
  }

  body.di-lp .di-lp-capture-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.di-lp .di-lp-capture-card {
    padding: 1.5rem;
  }

  body.di-lp .process-steps,
  body.di-lp .di-lp-process-steps {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  body.di-lp .process-line {
    display: none;
  }

  body.di-lp .di-lp-hero-actions,
  body.di-lp .di-lp-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  body.di-lp .di-lp-pricing-card {
    padding: 2rem 1.5rem;
  }

  body.di-lp section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  body.di-lp .btn {
    width: 100%;
    justify-content: center;
  }

  body.di-lp .di-lp-hero-sub {
    font-size: 1rem;
  }

  body.di-lp .di-lp-card,
  body.di-lp .di-lp-usecase {
    padding: 1.5rem;
  }
}
