/* ===== Vermieter-Landing (/vermieter/registrieren/) ===== */
.vl {
  --vl-ink: #1a2b3c;
  --vl-muted: #5a6a7a;
  --vl-sand: #eef4f8;
  --vl-sea: #1F6BA3;
  --vl-coral: #E50E4A;
  color: var(--vl-ink);
  background: #fff;
  overflow-x: hidden;
}

.vl-hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 35, 55, 0.25) 0%, rgba(15, 35, 55, 0.72) 55%, rgba(15, 35, 55, 0.88) 100%),
    url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
  animation: vl-hero-in 1.1s ease-out both;
}

@keyframes vl-hero-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.vl-hero-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 3.5rem;
  padding-bottom: 0.5rem;
}

.vl-brand {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.vl-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  font-weight: 700;
  max-width: 16ch;
  color: #fff;
}

.vl-hero-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 38ch;
  line-height: 1.45;
  opacity: 0.95;
}

.vl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.vl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.vl-btn:hover {
  transform: translateY(-1px);
}

.vl-btn-primary {
  background: var(--vl-coral);
  color: #fff;
}

.vl-btn-primary:hover {
  background: #c90c3f;
  color: #fff;
}

.vl-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.vl-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.vl-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.vl-pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.vl-section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0;
}

.vl-section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--vl-ink);
  font-family: var(--font-display);
}

.vl-section-lead {
  margin: 0 0 2rem;
  color: var(--vl-muted);
  max-width: 48ch;
  font-size: 1.05rem;
}

.vl-benefits {
  background: var(--vl-sand);
}

.vl-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .vl-benefit-grid {
    grid-template-columns: 1fr;
  }
}

.vl-benefit {
  background: #fff;
  padding: 1.5rem 1.35rem;
  border-top: 3px solid var(--vl-sea);
  box-shadow: 0 4px 20px rgba(31, 107, 163, 0.06);
  animation: vl-rise 0.7s ease both;
}

.vl-benefit:nth-child(2) { animation-delay: 0.08s; }
.vl-benefit:nth-child(3) { animation-delay: 0.16s; }

@keyframes vl-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.vl-benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  color: var(--vl-sea);
}

.vl-benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--vl-ink);
}

.vl-benefit p {
  margin: 0;
  color: var(--vl-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.vl-steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: vlstep;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 900px) {
  .vl-steps-list {
    grid-template-columns: 1fr;
  }
}

.vl-step {
  position: relative;
  padding: 0 0 0 3.5rem;
  counter-increment: vlstep;
}

.vl-step::before {
  content: counter(vlstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--vl-sea);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.vl-step h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.1rem;
}

.vl-step p {
  margin: 0;
  color: var(--vl-muted);
  font-size: 0.95rem;
}

.vl-register-wrap {
  background:
    linear-gradient(135deg, #0f2a44 0%, #1F6BA3 55%, #2a7eb8 100%);
  color: #fff;
}

.vl-register-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .vl-register-grid {
    grid-template-columns: 1fr;
  }
}

.vl-register-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
  font-family: var(--font-display);
}

.vl-register-copy p {
  margin: 0 0 1.25rem;
  opacity: 0.92;
  line-height: 1.5;
  max-width: 36ch;
}

.vl-price-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.vl-price-box strong {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vl-price-box span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.vl-register-form {
  background: #fff;
  color: var(--vl-ink);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.vl-register-form h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--vl-ink);
}

.vl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 560px) {
  .vl-form-row {
    grid-template-columns: 1fr;
  }
}

.vl-field {
  margin-bottom: 0.85rem;
}

.vl-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--vl-ink);
}

.vl-field input {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(84, 89, 95, 0.28);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--vl-ink);
}

.vl-field input:focus {
  outline: 2px solid var(--vl-sea);
  outline-offset: 0;
  border-color: var(--vl-sea);
}

.vl-field-error,
.vl-form-errors {
  color: var(--vl-coral);
  font-size: 0.82rem;
  margin: 0.25rem 0 0;
}

.vl-form-errors {
  margin-bottom: 0.75rem;
}

.vl-register-form .vl-btn-primary {
  width: 100%;
  margin-top: 0.35rem;
}

.vl-form-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--vl-muted);
  text-align: center;
}

.vl-form-note a {
  color: var(--vl-sea);
  font-weight: 600;
}

.vl-faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
}

.vl-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--vl-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.vl-faq summary::-webkit-details-marker { display: none; }

.vl-faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--vl-sea);
  font-weight: 400;
}

.vl-faq details[open] summary::after {
  content: "−";
}

.vl-faq details p {
  margin: 0.65rem 0 0.25rem;
  color: var(--vl-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 62ch;
}

.vl-cta-bar {
  text-align: center;
  padding: 3rem 1rem 3.5rem;
  background: var(--vl-sand);
}

.vl-cta-bar h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--vl-ink);
}

.vl-cta-bar p {
  margin: 0 0 1.25rem;
  color: var(--vl-muted);
}

@media (prefers-reduced-motion: reduce) {
  .vl-hero,
  .vl-benefit {
    animation: none;
  }
}
