/* Video-Landingpages: Video oben, Fokus schnelle Kontaktaufnahme */

.video-landing {
  max-width: 920px;
  margin: 0 auto;
  padding: 0.35rem 1rem 3.5rem;
}

#kontakt {
  scroll-margin-top: 5.5rem;
}

.video-landing__player-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(6, 182, 212, 0.08);
  background: #000;
}

.video-landing__player-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.video-landing__video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.video-landing__meta {
  text-align: center;
  padding: 1rem 0.5rem 0.25rem;
}

.video-landing__title {
  margin: 0;
  font-size: clamp(1.2rem, 4vw, 1.55rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.video-landing__lead {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.video-landing__container {
  margin-top: 1.75rem;
}

.video-lead-error {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.45);
  color: #f8b4bd;
  font-size: 0.9rem;
  line-height: 1.45;
}

.video-lead-error[hidden] {
  display: none !important;
}

.video-cta-card {
  background: linear-gradient(165deg, rgba(6, 182, 212, 0.1) 0%, var(--bg-deep) 45%);
  border: 1px solid rgba(6, 182, 212, 0.28);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.video-cta-kicker {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.video-cta-headline {
  margin: 0.35rem 0 1.1rem;
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.25;
}

.video-landing-form {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.video-pill-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.video-pill-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.video-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.video-pill-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.video-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 2.85rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  user-select: none;
}

.video-pill:hover {
  border-color: rgba(6, 182, 212, 0.45);
  color: var(--text-primary);
}

.video-pill-input:focus + .video-pill {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.video-pill-input:checked + .video-pill {
  background: rgba(6, 182, 212, 0.22);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.video-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.video-opt {
  font-weight: 500;
  opacity: 0.75;
  font-size: 0.78rem;
}

.video-req {
  color: var(--accent);
}

.video-field input[type='text'],
.video-field input[type='tel'],
.video-field input[type='email'] {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
}

.video-field input::placeholder {
  color: rgba(148, 163, 184, 0.65);
}

.video-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
}

.video-checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-secondary);
  cursor: pointer;
}

.video-checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent);
}

.video-checkbox a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.video-landing-submit {
  margin-top: 0.15rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  background: linear-gradient(180deg, #22d3ee 0%, var(--accent) 100%);
  color: #0f172a;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.35);
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
}

.video-landing-submit:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 28px rgba(6, 182, 212, 0.45);
}

.video-landing-submit:active {
  transform: scale(0.99);
}

.video-form-hint {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

.video-landing-fab {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #22d3ee 0%, var(--accent) 100%);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .video-landing-fab {
    display: inline-block;
  }

  .video-landing {
    padding-bottom: 5rem;
  }
}

@media (min-width: 600px) {
  .video-cta-card {
    padding: 1.5rem 1.65rem 1.65rem;
  }
}
