/* Upsell-Seite (One-Time-Offer) – eigenständig, keine Abhängigkeiten zum Hauptprojekt */

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

* {
  box-sizing: border-box;
}

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

/* Header */

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

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

/* Headline */

.up-headline-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 24px;
  text-align: center;
}

.up-title {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--up-blue);
}

.up-subtitle {
  font-size: 1rem;
  color: var(--up-muted);
  margin: 0;
}

/* Video */

.up-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;
}

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

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

.up-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;
}

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

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

/* Angebot + CTA */

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

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

.up-offer-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--up-ink);
  margin: 0 0 22px;
}

.up-offer-text strong {
  color: var(--up-blue);
}

.up-cta-btn {
  display: inline-block;
  width: 100%;
  padding: 18px 24px;
  border-radius: 999px;
  background: var(--up-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;
}

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

.up-fine {
  font-size: 0.82rem;
  color: #9aa5b1;
  margin: 16px 0 0;
}

/* Footer */

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

/* Mobile */

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

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

  .up-offer-text {
    font-size: 0.95rem;
  }
}
