:root{
  --brand: #2f6f64;
  --brand-dark: #1f3d38;
  --brand-light: #eef7f4;
  --soft: #f7fbfa;
  --border: #e6ece9;
  --text-soft: #6c757d;
}

body{
  background: #ffffff;
  color: #1f2a28;
}

.hero{
  background:
    radial-gradient(1000px 420px at 10% 10%, rgba(47,111,100,.10), transparent 60%),
    radial-gradient(800px 420px at 90% 20%, rgba(31,61,56,.08), transparent 55%),
    linear-gradient(180deg, var(--soft), #fff);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.brand-badge{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(47,111,100,.08);
  color: var(--brand-dark);
  border: 1px solid rgba(47,111,100,.14);
  font-weight: 500;
}

.btn-brand{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  border-radius: 12px;
  padding: .75rem 1.2rem;
  font-weight: 500;
  box-shadow: none;
}

.btn-brand:hover{
  background: #285f56;
  border-color: #285f56;
  color: #fff;
}

.card.soft{
  background: linear-gradient(180deg, #fff, rgba(244,250,248,.55));
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(31,61,56,.05);
}

.icon-circle{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(47,111,100,.08);
  color: var(--brand-dark);
  border: 1px solid rgba(47,111,100,.12);
  flex: 0 0 auto;
}

.section-title{
  letter-spacing: .1px;
}

.footer{
  background: #1d3b38;
  color: rgba(255,255,255,.82);
}

.footer a{
  color: rgba(255,255,255,.82);
}

.required::after{
  content: " *";
  color: #dc3545;
}

/* Anfragebereich */
#anfrage{
  background: linear-gradient(180deg, #fff, #fcfdfd);
}

#anfrage .info-box{
  background: #f8fbfa;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

#anfrage .card{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31,61,56,.05);
}

#anfrage .card-body{
  padding: 2rem;
}

#anfrage .form-section + .form-section{
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
}

#anfrage .section-kicker{
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
}

#anfrage .section-step{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,111,100,.10);
  color: var(--brand);
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid rgba(47,111,100,.12);
}

#anfrage .section-heading{
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--brand-dark);
}

#anfrage .section-note{
  font-size: .88rem;
  color: var(--text-soft);
  margin-top: .15rem;
}

#anfrage .form-label{
  font-weight: 600;
  margin-bottom: .42rem;
  color: #24312f;
  font-size: .95rem;
}

#anfrage .form-control,
#anfrage .form-select{
  border-radius: 12px;
  padding: .72rem .95rem;
  border: 1px solid var(--border);
  background: #fcfdfd;
  box-shadow: none;
  font-size: .96rem;
}

#anfrage .form-control::placeholder{
  color: #98a4a0;
}

#anfrage .form-control:focus,
#anfrage .form-select:focus{
  background: #fff;
  border-color: rgba(47,111,100,.35);
  box-shadow: 0 0 0 0.18rem rgba(47,111,100,.10);
}

#anfrage textarea.form-control{
  min-height: 110px;
  resize: vertical;
}

#anfrage .form-check{
  padding: 1rem 1rem 1rem 2rem;
  background: #fafcfb;
  border: 1px solid var(--border);
  border-radius: 16px;
}

#anfrage .form-check-input{
  margin-top: .25rem;
}

#anfrage .helper-text{
  font-size: .9rem;
  color: var(--text-soft);
}

#anfrage .btn-submit{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: .8rem 1.4rem;
  font-weight: 600;
}

#anfrage .btn-submit:hover{
  background: #285f56;
  border-color: #285f56;
  color: #fff;
}

#anfrage .optional-tag{
  font-size: .82rem;
  color: var(--text-soft);
  font-weight: 500;
}

@media (max-width: 991.98px){
  #anfrage .card-body{
    padding: 1.35rem;
  }
}