/* ================================
   BODY SECTIONS – quasafe (refined)
   ================================ */

/*
  Design-Ziele:
  - viel Weißraum
  - klare Card-Struktur
  - weich & vertrauenswürdig
  - exakt wie Referenz-Screenshots
*/

/* ================================
   CALL TO ACTION (Bottom CTA)
   ================================ */

.call-to-action {
  background: #f5f9ff;
  text-align: center;
  border-radius: 24px;
  padding: 4rem 2rem;
  margin: 0 1rem 6rem;
}

.call-to-action h1 {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
}

.call-to-action p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ================================
   TRUST ROW
   ================================ */

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.trust-icons .item {
  display: flex;
  align-items: center;
  gap: 0.6rem;

  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ================================
   PROBLEM / LÖSUNG
   ================================ */

.problem-solution {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .problem-solution {
    grid-template-columns: 1fr 1fr;
  }
}

/* Card-Stil für beide Spalten */
.problem-solution > div {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.04),
    0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Icon Box */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;

  background: #e0f2fe;
  color: var(--color-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  margin-bottom: 1rem;
}

/* ================================
   STEPS – "So funktioniert quasafe"
   ================================ */

.steps {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: #ffffff;
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  text-align: center;

  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.04),
    0 3px 8px rgba(0, 0, 0, 0.03);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;

  background: #e0f2fe;
  color: var(--color-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 1rem;
  font-weight: 700;
}

/* ================================
   GENERIC TEXT HELPERS
   ================================ */

.opacity-80 {
  opacity: 0.8;
}

.text-center {
  text-align: center;
}
