/* Webinar-Opt-in Landingpage – eigenständig, kein Abhängigkeiten zum Hauptprojekt */

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

* {
  box-sizing: border-box;
}

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

/* Header */

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

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

/* Hero */

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

.wo-badge {
  display: inline-block;
  background: var(--wo-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;
}

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

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

.wo-speaker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 6px 18px rgba(18, 32, 58, 0.08);
}

.wo-speaker-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wo-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.wo-speaker-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}

.wo-speaker-text strong {
  font-size: 0.92rem;
  color: var(--wo-ink);
}

.wo-speaker-text span {
  font-size: 0.8rem;
  color: var(--wo-muted);
}

/* Countdown */

.wo-countdown-section {
  background: #ffffff;
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid #e5e9f0;
  border-bottom: 1px solid #e5e9f0;
}

.wo-countdown-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wo-muted);
  margin: 0 0 6px;
}

.wo-countdown-date {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--wo-blue);
  margin: 0 0 20px;
}

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

.wo-countdown-item {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wo-countdown-item span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wo-ink);
}

.wo-countdown-item small {
  font-size: 0.7rem;
  color: var(--wo-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Benefits */

.wo-benefits {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 20px 8px;
}

.wo-section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 24px;
}

.wo-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wo-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.wo-check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wo-blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form */

.wo-form-section {
  padding: 48px 20px;
}

.wo-form-card {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(18, 32, 58, 0.1);
}

.wo-form-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.wo-form-sub {
  font-size: 0.92rem;
  color: var(--wo-muted);
  margin: 0 0 24px;
}

.wo-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wo-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #d8dce3;
  font-size: 1rem;
  font-family: inherit;
  color: var(--wo-ink);
}

.wo-form input:focus {
  outline: none;
  border-color: var(--wo-blue);
}

.wo-submit-btn {
  margin-top: 6px;
  padding: 15px 20px;
  border: none;
  border-radius: 999px;
  background: var(--wo-blue);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.wo-submit-btn:hover {
  opacity: 0.9;
}

.wo-form-success {
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 10px;
  background: #eef7ee;
  color: #2c6e2c;
  font-size: 0.9rem;
  font-weight: 700;
}

.wo-fine {
  margin: 18px 0 0;
  font-size: 0.78rem;
  color: #9aa5b1;
}

/* Social proof */

.wo-social-proof {
  text-align: center;
  padding: 0 20px 48px;
  color: var(--wo-muted);
  font-size: 0.95rem;
}

.wo-social-proof strong {
  color: var(--wo-blue);
}

/* Footer */

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

/* Reveal animation */

.wo-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */

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

  .wo-countdown {
    gap: 8px;
  }

  .wo-countdown-item {
    min-width: 52px;
    padding: 10px 8px;
  }

  .wo-countdown-item span {
    font-size: 1.2rem;
  }

  .wo-form-card {
    padding: 28px 20px;
  }
}
