/* Office Talent — Landing */

/* —— Hero mit Hintergrundbild —— */
.ho-hero {
  position: relative;
  min-height: min(85vh, 800px);
  display: flex;
  flex-direction: column;
  background-color: #0f172a;
  background-image: linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(30, 41, 59, 0.82) 45%,
      rgba(15, 23, 42, 0.92) 100%
    ),
    url("../assets/buero.png");
  background-size: cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

@media (max-width: 639px) {
  .ho-hero {
    /* Bild leicht nach rechts: Logo im rechten Bereich besser im sichtbaren Ausschnitt */
    background-position: center, 64% center;
  }
}

.ho-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 80% 15%,
    rgba(56, 189, 248, 0.18),
    transparent 55%
  );
  pointer-events: none;
}

.ho-hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1rem 2.5rem;
  box-sizing: border-box;
}

.ho-hero-panel {
  width: 100%;
  max-width: 40rem;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

.ho-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.ho-hero-badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #34d399;
  box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.35);
}

.ho-hero-title {
  margin: 0;
  font-size: clamp(1.65rem, 5.5vw, 2.05rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65);
}

.ho-hero-accent {
  color: #7dd3fc;
}

.ho-hero-lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: #f1f5f9;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.ho-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.ho-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.ho-hero-btn--primary {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.ho-hero-btn--primary:hover {
  background: #e0f2fe;
}

.ho-hero-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ho-hero-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (min-width: 640px) {
  .ho-hero-inner {
    justify-content: center;
    padding: 4rem 1.5rem;
  }

  .ho-hero-panel {
    padding: 1.75rem 1.75rem 2rem;
    border-radius: 1.5rem;
  }

  .ho-hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
  }

  .ho-hero-lead {
    font-size: 1.0625rem;
  }

  .ho-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ho-hero-btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .ho-hero-inner {
    align-items: flex-end;
    padding-right: 2rem;
  }

  .ho-hero-panel {
    max-width: 34rem;
  }
}

@media (max-width: 639px) {
  .ho-hero-inner {
    justify-content: flex-end;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }

  .ho-hero-panel {
    max-width: none;
  }
}

.ho-landing-gradient {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 189, 248, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(15, 23, 42, 0.06), transparent),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.ho-grid-dots {
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
}

.ho-card-shine {
  position: relative;
  overflow: hidden;
}

.ho-card-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 45%
  );
  pointer-events: none;
}

.ho-step-line {
  background: linear-gradient(90deg, #0ea5e9, #0f172a);
}

@media (min-width: 768px) {
  .ho-step-connector {
    position: absolute;
    top: 1.75rem;
    left: calc(50% + 2rem);
    right: calc(-50% + 2rem);
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #e2e8f0);
  }
}

.ho-stat-pill {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ho-float {
  animation: ho-float 6s ease-in-out infinite;
}

@keyframes ho-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.ho-fade-up {
  animation: ho-fade-up 0.7s ease-out both;
}

@keyframes ho-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ho-delay-1 {
  animation-delay: 0.1s;
}
.ho-delay-2 {
  animation-delay: 0.2s;
}
.ho-delay-3 {
  animation-delay: 0.3s;
}

/* Lucide-Icons (via CDN) */
.ho-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
  flex-shrink: 0;
}

.ho-icon-lg {
  width: 1.35rem;
  height: 1.35rem;
}

.ho-icon-xl {
  width: 1.5rem;
  height: 1.5rem;
}

.ho-icon-inline {
  width: 1rem;
  height: 1rem;
}
