/* Discovery-Landingpage – Ergänzungen zu style.css */

.discovery-hero .hero-lead {
  font-size: 1.15rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.discovery-hero .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 640px;
}

@media (max-width: 480px) {
  .discovery-hero .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .discovery-hero .hero-cta-group .btn {
    width: 100%;
  }
}

.hero-microcopy {
  margin-top: 1.25rem !important;
  font-size: 0.95rem !important;
  opacity: 0.92;
  letter-spacing: 0.02em;
}

.hero-secondary {
  margin-top: 1.5rem !important;
  font-size: 0.9rem !important;
  opacity: 0.88;
}

.hero-secondary a {
  color: var(--brand-400);
  font-weight: 600;
}

/* Workflow – Arbeitsablauf-Check „So funktioniert es“ */
.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin-top: 2rem;
}

.workflow-steps {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 100%;
  padding: 1.5rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.workflow-step__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--brand-500);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 4px var(--surface);
}

.workflow-step .workflow-step__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-900);
  text-align: center;
  letter-spacing: normal;
}

.workflow-step .workflow-step__text {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-600);
  text-align: center;
}

.workflow-result {
  grid-column: 1 / -1;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.workflow-result__label {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-600);
  text-align: center;
}

.workflow-result__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-result__item {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-900);
  text-align: left;
}

@media (min-width: 901px) {
  .workflow {
    position: relative;
  }

  .workflow::before {
    content: "";
    position: absolute;
    top: 2.75rem;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: var(--border);
    z-index: 0;
    pointer-events: none;
  }
}

@media (max-width: 1100px) {
  .workflow-result__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .workflow {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .workflow::before {
    display: none;
  }

  .workflow-result__grid {
    grid-template-columns: 1fr;
  }
}

.section-prose .problem-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  max-width: 720px;
  text-align: left;
}

.section-prose .problem-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  color: var(--ink-600);
  line-height: 1.5;
}

.section-prose .problem-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-500);
  font-weight: 700;
}

.problem-closing,
.examples-closing,
.examples-note {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.examples-note {
  color: var(--ink-600);
  margin-bottom: 1.5rem;
}

.examples-table-wrap {
  overflow-x: auto;
  margin: 0 auto 1.5em;
  max-width: 800px;
}

.examples-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.examples-table th,
.examples-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.examples-table th {
  background: var(--brand-100);
  color: var(--ink-900);
  font-weight: 600;
}

.examples-table tr:last-child td {
  border-bottom: none;
}

.examples-table td:first-child {
  font-weight: 600;
  color: var(--brand-500);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .examples-table-wrap {
    overflow-x: visible;
    max-width: none;
  }

  .examples-table {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .examples-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .examples-table tbody,
  .examples-table tr {
    display: block;
  }

  .examples-table tr {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
    overflow: hidden;
  }

  .examples-table tr:last-child {
    margin-bottom: 0;
  }

  .examples-table td {
    display: block;
    border-bottom: none;
    padding: 0.85em 1.1em;
  }

  .examples-table td:first-child {
    white-space: normal;
    padding-bottom: 0.35rem;
    background: var(--brand-100);
  }

  .examples-table td:last-child {
    padding-top: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--ink-600);
  }
}

.discovery-not-do {
  background: var(--brand-100);
  border-radius: var(--radius-md);
  max-width: none;
}

.not-do-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
  text-align: left;
}

.not-do-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  font-size: 1.05rem;
  color: var(--ink-900);
}

.not-do-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
}

.discovery-form-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-intro {
  max-width: 560px;
  margin: 0 auto 1.5rem !important;
  color: var(--ink-600);
}

.meetergo-widget {
  max-width: 900px;
  margin: 0 auto;
}

.meetergo-widget .meetergo-iframe {
  min-width: 330px;
  width: 100%;
}

.discovery-form-alt {
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: center;
}

.discovery-form-alt__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.25rem;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.discovery-form-alt__divider::before,
.discovery-form-alt__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn--whatsapp {
  display: inline-flex;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp .btn__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.discovery-form-alt__microcopy {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-600);
}

@media (max-width: 768px) {
  .mobile-cta-bar.mobile-cta-bar--dual {
    display: flex;
    gap: 0.5rem;
  }

  .mobile-cta-bar--dual .btn {
    flex: 1;
    min-width: 0;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    font-size: 0.88rem;
  }

  .mobile-cta-bar--dual .btn--primary {
    width: auto;
  }
}

#discovery-form-el {
  max-width: 560px;
  margin: 0 auto;
}

#discovery-form-el .form-row {
  margin-bottom: 1.25em;
  text-align: left;
}

#discovery-form-el label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em;
  color: #2e3a59;
}

#discovery-form-el .required {
  color: #e74c3c;
}

#discovery-form-el .optional {
  font-weight: 400;
  color: #666;
  font-size: 0.9em;
}

#discovery-form-el input[type="text"],
#discovery-form-el input[type="email"],
#discovery-form-el select,
#discovery-form-el textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  font-size: 1em;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

#discovery-form-el input:focus,
#discovery-form-el select:focus,
#discovery-form-el textarea:focus {
  outline: none;
  border-color: #00b58b;
  box-shadow: 0 0 0 3px rgba(0, 181, 139, 0.15);
}

#discovery-form-el textarea {
  resize: vertical;
  min-height: 100px;
}

.hcaptcha-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5em;
}

#discovery-form-el .form-submit {
  margin-top: 1.5em;
  width: 100%;
  max-width: none;
  cursor: pointer;
}

#discovery-form-el .form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  text-align: center;
  margin-top: 1em;
  min-height: 1.5em;
  font-size: 0.95em;
}

.form-status.success {
  color: #00b58b;
  font-weight: 600;
}

.form-status.error {
  color: #e74c3c;
}
