.jh-contact-card{
  max-width: 680px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
}

.jh-contact-title{
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.jh-contact-sub{
  margin: 0 0 18px;
  color: rgba(0,0,0,.65);
}

.jh-contact-form{
  display: grid;
  gap: 14px;
}

.jh-field label{
  display:block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: .95rem;
}

.jh-field input,
.jh-field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.jh-field input:focus,
.jh-field textarea:focus{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

.jh-consent{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}

.jh-consent-text{
  font-size: .95rem;
  color: rgba(0,0,0,.75);
}

.jh-consent-text a{
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jh-switch{
  position: relative;
  display:inline-block;
  width: 52px;
  height: 30px;
  flex: 0 0 auto;
}

.jh-switch input{
  opacity:0;
  width:0;
  height:0;
}

.jh-slider{
  position:absolute;
  cursor:pointer;
  inset:0;
  background: rgba(0,0,0,.18);
  border-radius: 999px;
  transition: .18s ease;
}

.jh-slider:before{
  content:"";
  position:absolute;
  height: 24px;
  width: 24px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .18s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

.jh-switch input:checked + .jh-slider{
  background: rgba(40,160,80,.9);
}

.jh-switch input:checked + .jh-slider:before{
  transform: translateX(22px);
}

.jh-turnstile{
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.jh-hint{
  color: rgba(0,0,0,.55);
}

.jh-btn{
  appearance:none;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 800;
  cursor:pointer;

  /* NEU: natürliches Grün */
  background: linear-gradient(135deg, #6fae7a, #4f8f66);
  color:#fff;

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;

  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}


.jh-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(79, 143, 102, .35);
}

.jh-btn:active{
  transform: translateY(0);
  box-shadow: none;
}

.jh-btn[disabled]{
  opacity:.65;
  cursor:not-allowed;
  box-shadow: none;
}


.jh-status{
  min-height: 1.2em;
  font-size: .95rem;
  color: rgba(0,0,0,.75);
}

@media (max-width: 520px){
  .jh-contact-card{ padding: 18px; }
  .jh-consent{ align-items:flex-start; }
}
/* ================================
   Honeypot – für Menschen unsichtbar
   ================================ */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}
/* Mehr Abstand zwischen Datenschutz und Turnstile */
.jh-consent {
  margin-bottom: 24px; /* vorher quasi 0 */
}
.jh-turnstile {
  padding-top: 8px;
}
