/* Salespage nach dem Webinar – eigenständig, keine Abhängigkeiten zum Hauptprojekt */

:root {
  --sp-blue: rgb(48, 111, 182);
  --sp-green: #25b562;
  --sp-red: #d92d20;
  --sp-ink: #1a1a1a;
  --sp-muted: #5c6b80;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--sp-ink);
  background: #f5f7fa;
}

/* Dringlichkeits-Leiste */

.sp-urgency-bar {
  background: var(--sp-red);
  color: #ffffff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
}

.sp-urgency-bar span {
  font-variant-numeric: tabular-nums;
}

/* Header */

.sp-header {
  padding: 24px 20px;
  text-align: center;
  background: #ffffff;
}

.sp-logo {
  height: 40px;
  width: auto;
}

/* Hero */

.sp-hero {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 20px 24px;
  text-align: center;
}

.sp-kicker {
  display: inline-block;
  background: var(--sp-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.sp-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--sp-ink);
}

.sp-highlight {
  color: var(--sp-blue);
}

.sp-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--sp-muted);
  margin: 0;
}

/* Video */

.sp-video-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 20px 32px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sp-video-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-video-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(18, 32, 58, 0.14);
}

.sp-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(160deg, #1a2230, #0d1420);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sp-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--sp-blue);
  font-size: 1.8rem;
  padding-left: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.sp-video-placeholder:hover .sp-play-btn {
  transform: scale(1.08);
}

/* CTA */

.sp-cta-section {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sp-cta-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-cta-btn {
  display: inline-block;
  width: 100%;
  padding: 18px 24px;
  border-radius: 999px;
  background: var(--sp-green);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 181, 98, 0.35);
  transition: opacity 0.15s ease;
}

.sp-cta-btn:hover {
  opacity: 0.9;
}

.sp-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.sp-price-old {
  font-size: 1.05rem;
  font-weight: 700;
  color: #9aa5b1;
  text-decoration: line-through;
}

.sp-price-new {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sp-ink);
}

.sp-price-note {
  font-size: 0.85rem;
  color: var(--sp-muted);
  margin: 6px 0 0;
}

/* Countdown */

.sp-countdown-section {
  max-width: 480px;
  margin: 0 auto;
  padding: 8px 20px 56px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sp-countdown-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-countdown-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sp-red);
  margin: 0 0 18px;
}

.sp-countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.sp-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--sp-blue);
  background: #ffffff;
}

.sp-countdown-item span {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sp-ink);
  line-height: 1.1;
}

.sp-countdown-item small {
  font-size: 0.6rem;
  color: var(--sp-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Footer */

.sp-footer {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-top: 1px solid #e5e9f0;
  font-size: 0.78rem;
  color: #9aa5b1;
}

/* Mobile */

@media (max-width: 480px) {
  .sp-title {
    font-size: 1.6rem;
  }

  .sp-play-btn {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
  }

  .sp-countdown {
    gap: 8px;
  }

  .sp-countdown-item {
    width: 54px;
    height: 54px;
  }

  .sp-countdown-item span {
    font-size: 0.95rem;
  }

  .sp-price-new {
    font-size: 1.35rem;
  }
}
