* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: #050505;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  padding: 2rem 1rem;
}

/* AI Tech Background */
.background-animation {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  /* Grid effect */
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}

/* Glowing tech nodes */
.blob {
  position: absolute;
  border-radius: 50%;
  animation: pulseMove 15s infinite alternate ease-in-out;
  filter: blur(60px);
}

.blob1 {
  width: 400px;
  height: 400px;
  background: #ff6b00;
  /* Orange */
  top: -100px;
  left: -100px;
  opacity: 0.3;
}

.blob2 {
  width: 500px;
  height: 500px;
  background: #ff8c00;
  /* Lighter Orange */
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
  opacity: 0.2;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: #ffffff;
  /* White */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  opacity: 0.1;
}

@keyframes pulseMove {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: translate(50px, 50px) scale(1.2);
    opacity: 0.2;
  }
}

/* Scanline effect to make it look like tech/screen */
.background-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.15) 1px,
      transparent 1px,
      transparent 2px);
  pointer-events: none;
  z-index: -1;
}

.quiz-container {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 107, 0, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  padding: 2.5rem;
  z-index: 10;
  box-shadow: 0 0 50px rgba(255, 107, 0, 0.15), 0 0 15px rgba(255, 255, 255, 0.05);
  /* Black/Orange/White */
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  margin: auto;
}

.quiz-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00, #ff8c00, #ffffff);
}

.quiz-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* HASHTAG LOGO IN ORANGE */
.logo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ff6b00;
  /* Orange logo */
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff6b00, #ffaa00);
  transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 10px;
  box-shadow: 0 0 10px #ff6b00;
}

.progress-text {
  font-size: 0.85rem;
  color: #aaa;
}

.funnel-content {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #ffffff;
}

.step-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  text-align: center;
  margin-bottom: 1.5rem;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.option-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.option-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
  transform: skewX(-20deg);
}

.option-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 0, 0.5);
  /* Orange border on hover */
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.option-btn:hover::before {
  left: 200%;
}

.option-btn.selected {
  background: rgba(255, 107, 0, 0.15);
  border-color: #ff6b00;
  color: #ffffff;
  box-shadow: inset 4px 0 0 #ff6b00, 0 5px 15px rgba(255, 107, 0, 0.2);
  transform: scale(1.02);
}

.action-btn {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: #000000;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
  align-self: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.action-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg) scale(0);
  transition: transform 0.5s;
}

.action-btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
}

.action-btn:hover:not(:disabled)::after {
  transform: rotate(45deg) scale(1);
}

.action-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.input-field {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  outline: none;
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
  background: rgba(0, 0, 0, 0.8);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 107, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.benefits-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.benefits-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

.benefits-list li::before {
  content: '🚀';
  color: #ff6b00;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.2rem;
}

.fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-out {
  animation: fadeOut 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
}

/* Final Page Styles */
.final-page {
  text-align: center;
}

.final-title {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #ffffff 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  font-weight: 800;
}

.comparison-box {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.comparison-col {
  flex: 1;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.comparison-col.before {
  border-top: 4px solid #555555;
}

.comparison-col.after {
  border-top: 4px solid #ff6b00;
  /* Orange success */
  background: rgba(255, 107, 0, 0.05);
}

.comparison-col h3 {
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-col.before h3 {
  color: #aaaaaa;
}

.comparison-col.after h3 {
  color: #ff6b00;
}

.comparison-list {
  list-style: none;
  font-size: 1rem;
}

.comparison-list li {
  margin-bottom: 1rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

.comparison-col.before li {
  color: #aaaaaa;
}

.comparison-col.before li::before {
  content: '❌ ';
  margin-right: 8px;
  font-size: 1.1rem;
}

.comparison-col.after li::before {
  content: '✔️ ';
  margin-right: 8px;
  font-size: 1.1rem;
}

.cta-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 107, 0, 0.5);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 20px rgba(255, 107, 0, 0.1);
}

.cta-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.guarantee {
  font-size: 0.9rem;
  color: #cccccc;
  margin-top: 1.5rem;
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
}

@media (max-width: 600px) {
  .comparison-box {
    flex-direction: column;
  }

  .quiz-container {
    padding: 1.5rem;
    width: 95%;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  .action-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}