.cta {
  background: var(--nd);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(226, 138, 47, .07), transparent 60%);
}

.cta .wrap {
  position: relative;
  z-index: 2;
}

.cta-logo {
  width: 68px;
  height: auto;
  max-width: none;
  margin: 0 auto 1rem;
  object-fit: contain;
  aspect-ratio: 1;
  opacity: .4;
}

.cta .sl {
  color: var(--og);
}

.cta .st {
  color: #fff;
}

.cta-text {
  color: rgba(255, 255, 255, .42);
  font-size: .92rem;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 1.8rem;
}

.cta-btns {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* ── Kontaktformular (Web3Forms) ── */

.cta-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.cta-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cta-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .35rem;
  margin-top: 1rem;
}

.cta-label:first-of-type {
  margin-top: 0;
}

.cta-input {
  width: 100%;
  padding: .65rem .85rem;
  font-family: var(--f);
  font-size: .88rem;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  transition: border-color .2s, background .2s;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, .28);
}

.cta-input:hover {
  border-color: rgba(255, 255, 255, .2);
}

.cta-input:focus {
  outline: none;
  border-color: var(--or);
  background: rgba(255, 255, 255, .08);
}

.cta-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

.cta-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.25rem;
}

.cta-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cta-form-msg {
  margin: 1rem 0 0;
  font-size: .84rem;
  line-height: 1.55;
  text-align: center;
}

.cta-form-msg.is-success {
  color: var(--og);
}

.cta-form-msg.is-error {
  color: #f0a0a0;
}
