/* moonlander group · One-Pager · style.css */

/* ── Scroll-Animation Base ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Leistungskarten Hover ── */
.service-card {
  border-top: 3px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.service-card:hover {
  border-top-color: #C8A96E;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* ── Prozess-Nummer ── */
.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #C8A96E;
  font-variant-numeric: tabular-nums;
}

/* ── Gold Divider ── */
.gold-divider {
  display: block;
  width: 48px;
  height: 3px;
  background: #C8A96E;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* ── CTA Button ── */
.btn-gold {
  display: inline-block;
  background: #C8A96E;
  color: #111111;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.02em;
}
.btn-gold:hover {
  background: #d4b87e;
  transform: translateY(-1px);
}

/* ── Sticky Header ── */
#sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
#sticky-header.visible {
  transform: translateY(0);
}

/* ── Smooth Scroll ── */
html {
  scroll-behavior: smooth;
}

/* ── Selection Color ── */
::selection {
  background: #C8A96E;
  color: #111111;
}

/* ── Service Icon ── */
.service-icon {
  font-size: 1.75rem;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

/* ── USP radial glow ── */
.usp-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Phase Rows ── */
.phase-row {
  display: grid;
  grid-template-columns: 130px 1fr 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .phase-row {
    grid-template-columns: 1fr;
  }
  .phase-label-cell,
  .phase-price-cell {
    padding: 16px 20px !important;
  }
}

/* ── Contact Grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-gold:hover,
  .service-card:hover {
    transform: none;
  }
}
