/* ============================================
   Guide / Lead Magnet – Ergänzungs-CSS
   Konsistent mit v4 Design System
   ============================================ */

/* --- Gate Form --- */
.gate-form-wrap {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.gate-form-wrap p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.gate-form-wrap ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
  display: inline-block;
}

.gate-form-wrap ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gate-form-wrap ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.gate-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gate-form input[type="email"] {
  flex: 1 1 280px;
  max-width: 340px;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.gate-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.gate-form input[type="email"]:focus {
  border-color: var(--accent);
}

.gate-form .btn {
  flex-shrink: 0;
}

.gate-hint {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.gate-hint a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.gate-hint a:hover {
  color: var(--accent);
}

/* --- Verlustzone Cards (Gated Page) --- */
.zone-section {
  padding: var(--section-py) 0;
}

.zone-section:nth-child(even) {
  background: var(--bg-light);
}

.zone-header {
  margin-bottom: 2rem;
}

.zone-header h2 {
  margin-bottom: 0.75rem;
}

.zone-header h2 .zone-num {
  color: var(--accent);
  opacity: 0.5;
  margin-right: 0.25rem;
}

.zone-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin-bottom: 1rem;
}

.zone-signs {
  margin-bottom: 2rem;
}

.zone-signs h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.zone-signs ul {
  list-style: none;
  padding: 0;
}

.zone-signs li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.zone-signs li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.zone-cost {
  background: rgba(56, 251, 219, 0.04);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}

.zone-cost p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Solution grid: Quick Win / Tieferer Lösungsweg / Beispiele */
.zone-solutions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.zone-solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition);
}

.zone-solution-card:hover {
  border-color: rgba(56, 251, 219, 0.2);
}

.zone-solution-card .sol-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.sol-label--quick {
  background: rgba(56, 251, 219, 0.12);
  color: var(--accent);
}

.sol-label--deep {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.sol-label--example {
  background: rgba(56, 251, 219, 0.06);
  color: var(--accent);
  opacity: 0.8;
}

.zone-solution-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.zone-solution-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.zone-solution-card ul {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.zone-solution-card ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.zone-solution-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* --- Cost Cluster (3 cards) --- */
.cost-cluster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cost-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.cost-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.cost-card ul {
  list-style: none;
  padding: 0;
}

.cost-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cost-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- Priority Steps (numbered cards) --- */
.priority-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: prio;
}

.priority-step {
  counter-increment: prio;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.priority-step::before {
  content: counter(prio);
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.priority-step h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.priority-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- Gated hero tightening --- */
.hero.hero-sub {
  padding: 7.75rem 0 calc(var(--section-py) * 0.8);
}

.hero.hero-sub .lead {
  max-width: 600px;
  margin: 1rem 0 1.5rem;
  font-size: 1.08rem;
  line-height: 1.6;
}

/* --- Gated question line --- */
.guide-question-section {
  padding-top: 1.6rem;
  padding-bottom: 1.2rem;
}

.guide-question-inline {
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.guide-question-inline p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.guide-question-inline strong {
  color: var(--text);
}

/* --- Know-this list (public page) --- */
.know-this-list {
  list-style: none;
  padding: 0;
  max-width: 640px;
}

.know-this-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.know-this-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- CTA points grid --- */
.cta-points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.cta-point-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.1rem;
  text-align: center;
}

.cta-point-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cta-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(56, 251, 219, 0.1);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- Verdichtet callout --- */
.callout-box {
  background: rgba(56, 251, 219, 0.04);
  border: 1px solid rgba(56, 251, 219, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 2rem;
}

.callout-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.callout-box strong {
  color: var(--text);
}

/* --- Responsive additions --- */
@media (max-width: 768px) {
  .hero.hero-sub {
    padding: 6.25rem 0 calc(var(--section-py) * 0.7);
  }

  .hero.hero-sub .lead {
    margin: 0.85rem 0 1.25rem;
    font-size: 1rem;
  }

  .guide-question-section {
    padding-top: 1.1rem;
    padding-bottom: 0.9rem;
  }

  .guide-question-inline {
    max-width: 100%;
  }

  .guide-question-inline p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .gate-form {
    flex-direction: column;
    align-items: stretch;
  }
  .gate-form input[type="email"] {
    max-width: 100%;
    min-height: 56px;
    height: 56px;
    padding: 0 1.1rem;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
  }
  .zone-solutions {
    grid-template-columns: 1fr;
  }
  .cost-cluster {
    grid-template-columns: 1fr;
  }
  .priority-steps {
    grid-template-columns: 1fr;
  }

  .cta-points-grid {
    grid-template-columns: 1fr;
  }
}
