/* ═══════════════════════════════════
   Campaign Landing Pages
   ═══════════════════════════════════ */

.lp-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0e1a;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.lp-hero {
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.lp-stars {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(124,92,255,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(124,92,255,0.1);
  color: #a78bfa;
  border: 1px solid rgba(124,92,255,0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.lp-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.lp-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 14px !important;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(124,92,255,0.3);
}

.lp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124,92,255,0.45);
}

.lp-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.lp-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

.lp-trust i {
  color: #f59e0b;
  font-size: 12px;
}

.lp-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.lp-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124,92,255,0.12);
  border-radius: 14px;
  min-width: 130px;
  transition: all 0.3s;
}

.lp-feature:hover {
  background: rgba(124,92,255,0.06);
  border-color: rgba(124,92,255,0.25);
  transform: translateY(-4px);
}

.lp-feature i {
  font-size: 24px;
  color: #a78bfa;
}

.lp-feature strong {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* ═══ Quiz ═══ */
.quiz-container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.quiz-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #7C5CFF, #a78bfa);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.quiz-question {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.quiz-option:hover {
  background: rgba(124,92,255,0.1);
  border-color: rgba(124,92,255,0.4);
  transform: translateX(4px);
}

.quiz-result-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid;
  border-radius: 20px;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ Responsive ═══ */
@media (max-width: 480px) {
  .lp-container { padding: 24px 16px; }
  .lp-cta { padding: 14px 28px !important; font-size: 16px !important; }
  .lp-features { gap: 10px; }
  .lp-feature { padding: 14px 16px; min-width: 100px; }
  .lp-trust { gap: 12px; }
}
