/* ===== QUIZ INTRO ===== */
.quiz-intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.quiz-intro-content {
  max-width: 600px;
}

.quiz-intro h1 {
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.95;
  margin-bottom: 24px;
}

.quiz-intro .tagline {
  font-size: 1.1rem;
  color: #CCCCCC;
  line-height: 1.7;
}

/* ===== QUIZ SECTION ===== */
.quiz-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.quiz-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: #F05325;
  width: 0%;
  transition: width 0.4s ease;
}

.quiz-counter {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555555;
  margin-bottom: 48px;
}

.quiz-question {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.2;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.quiz-option {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid transparent;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #CCCCCC;
  text-align: left;
  width: 100%;
}

.quiz-option:hover {
  border-left-color: #F05325;
  background: #161616;
  transform: translateX(4px);
}

.quiz-option.selected {
  border-left-color: #F05325;
  background: rgba(240, 83, 37, 0.08);
  color: #FFFFFF;
}

/* Transition between questions */
.quiz-question-area {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.quiz-question-area.transitioning {
  opacity: 0;
  transform: translateY(10px);
}

/* ===== RESULTS SECTION ===== */
.results-section {
  padding-top: 140px;
}

.result-header {
  margin-bottom: 80px;
  animation: fadeUp 0.6s ease forwards;
}

.result-header h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  color: #F05325;
  margin-bottom: 8px;
}

.result-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.result-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #CCCCCC;
  max-width: 640px;
}

/* ===== RESULT BLOCKS ===== */
.result-block {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.result-block:nth-child(2) { animation-delay: 0.1s; }
.result-block:nth-child(3) { animation-delay: 0.15s; }
.result-block:nth-child(4) { animation-delay: 0.2s; }
.result-block:nth-child(5) { animation-delay: 0.25s; }
.result-block:nth-child(6) { animation-delay: 0.3s; }
.result-block:nth-child(7) { animation-delay: 0.35s; }

.result-block h2 {
  margin-bottom: 32px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SALARY TABLE ===== */
.salary-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.salary-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.salary-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888888;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.salary-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
}

.salary-table td:first-child {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #FFFFFF;
}

.salary-table td:not(:first-child) {
  color: #F05325;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.salary-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ===== SKILLS GRID ===== */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #F05325;
  padding: 14px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}

/* ===== ARTICLES LIST ===== */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #111111;
  border-left: 3px solid #F05325;
  transition: transform 0.2s;
}

.article-item:hover {
  transform: translateX(4px);
}

.article-title {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.article-source {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555555;
  flex-shrink: 0;
  margin-left: 16px;
}

/* ===== CREATORS GRID ===== */
.creators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .creators-grid { grid-template-columns: 1fr 1fr; }
}

.creator-card {
  background: #111111;
  border-left: 3px solid #F05325;
  padding: 28px;
}

.creator-card h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.creator-handle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F05325;
  margin-bottom: 12px;
  display: block;
}

.creator-card p {
  font-size: 0.9rem;
  color: #888888;
}

/* ===== 30-DAY PLAN ===== */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .plan-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .plan-grid { grid-template-columns: repeat(4, 1fr); }
}

.plan-week {
  background: #111111;
  border-left: 3px solid #F05325;
  padding: 28px;
}

.plan-week-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F05325;
  margin-bottom: 4px;
  display: block;
}

.plan-week h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.plan-week ul {
  list-style: none;
  padding: 0;
}

.plan-week ul li {
  color: #888888;
  font-size: 0.85rem;
  padding: 6px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.plan-week ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 1px;
  background: #F05325;
}

/* ===== MKE OPPORTUNITIES ===== */
.mke-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mke-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #111111;
  border-left: 3px solid #F05325;
  transition: transform 0.2s;
  flex-wrap: wrap;
  gap: 8px;
}

.mke-item:hover {
  transform: translateX(4px);
}

.mke-info {
  flex: 1;
  min-width: 200px;
}

.mke-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.mke-org {
  font-size: 0.8rem;
  color: #888888;
}

.mke-type {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F05325;
  background: rgba(240, 83, 37, 0.1);
  padding: 6px 14px;
  flex-shrink: 0;
}

/* ===== RESULT CTA ===== */
.result-cta {
  text-align: center;
  padding: 60px 0;
}

/* ===== OPT-IN ===== */
.result-optin {
  padding-bottom: 40px;
}

.optin-card {
  background: #111111;
  border-left: 3px solid #F05325;
  padding: 40px 32px;
  max-width: 560px;
  margin: 0 auto;
}

.optin-card h3 {
  margin-bottom: 8px;
}

.optin-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.optin-fields input {
  width: 100%;
  padding: 14px 16px;
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.optin-fields input::placeholder {
  color: #555555;
}

.optin-fields input:focus {
  border-color: #F05325;
}

.optin-fields .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .optin-fields {
    flex-direction: row;
  }
  .optin-fields input {
    flex: 1;
  }
  .optin-fields .btn {
    width: auto;
    white-space: nowrap;
  }
}
