/* ================= ASSESSMENT BASE ================= */


.assessment-wrapper {
    min-height: 100vh;
    background: radial-gradient(circle at top, #121212, #080808);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
   
    font-family: 'Inter', sans-serif;
  }
  
  .hidden {
    display: none;
  }

  /*Hero*/
  .assessment-hero {
    max-width: 720px;
    text-align: center;
  }
  
  .assessment-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .assessment-hero p {
    margin-top: 16px;
    font-size: 1.1rem;
    color: #bdbdbd;
  }
  
  .assessment-hero .btn-primary {
    margin-top: 32px;
    border-radius: 12px;
    padding: 10px;
  }

  /*Question Card*/
  .question-card {
    max-width: 760px;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeUp 0.6s ease;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*CAtegory and Question Text*/
  .question-category {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
  }
  
  .question-card h2 {
    margin: 16px 0 32px;
    font-size: 1.8rem;
    font-weight: 500;
  }

  /*Answer Option*/
  .options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .option-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .option-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
  }
  
  /*Progress Indicator*/
  .progress {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #9e9e9e;
    text-align: right;
  }
  
  /*Mobile*/
  @media (max-width: 600px) {
    .assessment-hero h1 {
      font-size: 2.2rem;
    }
  
    .question-card {
      padding: 28px;
    }
  
    .question-card h2 {
      font-size: 1.4rem;
    }
  }
  

  /*Results*/
  .result-card {
    max-width: 820px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 48px;
    animation: fadeUp 0.8s ease;
  }
  
  .result-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .result-level {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9e9e9e;
  }
  
  .result-message {
    margin-top: 12px;
    color: #bdbdbd;
  }
  
  .result-section {
    margin-bottom: 32px;
  }
  
  .result-section h3 {
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .result-section ul {
    margin-top: 12px;
    padding-left: 18px;
  }
  
  .result-section ul li {
    margin-bottom: 8px;
    color: #e0e0e0;
  }
  
  .result-section.weak h3 {
    color: #ffb74d;
  }
  
  .result-section.strong h3 {
    color: #81c784;
  }
  
  .result-section.plan h3 {
    color: #64b5f6;
  }
  
  .result-cta {
    text-align: center;
    margin-top: 40px;
    border-radius: 12px;
    padding: 10px;
  }
  
  .cta-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  
  .option-btn.active {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
  }
  