/* ========================================
   Novolene — Evaluation Flow Styles
   MEDVi-Inspired Warm Clinical Aesthetic
   ======================================== */

/* ── Page Base ── */
.eval-page {
  min-height: 100vh;
  background: #F7F4F0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ── Top Bar ── */
.eval-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #F7F4F0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.eval-topbar-logo {
  height: 28px;
  width: auto;
}
.eval-topbar-trust {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #6B6560;
}
.eval-topbar-trust .stars {
  color: #4A6741;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ── Progress Stepper ── */
.eval-stepper {
  position: fixed;
  top: 53px; left: 0; right: 0;
  z-index: 99;
  background: #F7F4F0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.eval-step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
}
.eval-step-dot {
  display: flex;
  align-items: center;
  gap: 8px;
}
.eval-step-dot .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #D4CEC6;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9A958F;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.eval-step-dot .dot.active {
  border-color: #C4A265;
  background: #C4A265;
  color: white;
}
.eval-step-dot .dot.complete {
  border-color: #4A6741;
  background: #4A6741;
  color: white;
}
.eval-step-dot .step-label {
  font-size: 13px;
  font-weight: 600;
  color: #9A958F;
  transition: color 0.3s ease;
}
.eval-step-dot .step-label.active {
  color: #C4A265;
}
.eval-step-dot .step-label.complete {
  color: #4A6741;
}
.eval-step-line {
  width: 60px;
  height: 2px;
  background: #D4CEC6;
  margin: 0 12px;
  transition: background 0.4s ease;
  flex-shrink: 0;
}
.eval-step-line.complete {
  background: #4A6741;
}

/* ── Main Content Area ── */
.eval-main {
  flex: 1;
  padding-top: 120px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.eval-container {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
}

/* ── Step Panels ── */
.eval-step {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.eval-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.eval-step.slide-out-left {
  display: block;
  opacity: 0;
  transform: translateX(-30px);
}

/* ── Back Button ── */
.eval-back {
  position: fixed;
  top: 120px; left: 24px;
  z-index: 50;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #E5E1DA;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #6B6560;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.eval-back:hover {
  background: #F0EBE3;
  border-color: #C4A265;
  color: #3A3028;
}
.eval-back.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Typography ── */
.eval-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: #3A3028;
  margin-bottom: 8px;
}
.eval-heading .accent {
  color: #C4A265;
  font-style: italic;
}
.eval-subheading {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #6B6560;
  line-height: 1.6;
  margin-bottom: 28px;
}
.eval-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #3A3028;
  margin-bottom: 16px;
  margin-top: 24px;
}

/* ── Divider ── */
.eval-divider {
  width: 100%;
  height: 1px;
  background: #E5E1DA;
  margin: 20px 0;
}

/* ── Option Cards (icon style) ── */
.eval-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.eval-option-card {
  flex: 1;
  min-width: 130px;
  background: white;
  border: 2px solid #E5E1DA;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.eval-option-card:hover {
  border-color: #C4A265;
  box-shadow: 0 4px 16px rgba(196, 162, 101, 0.12);
}
.eval-option-card.selected {
  border-color: #C4A265;
  background: #FBF8F3;
  box-shadow: 0 4px 16px rgba(196, 162, 101, 0.15);
}
.eval-option-card .card-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.eval-option-card .card-icon svg {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  color: #6B6560;
}
.eval-option-card.selected .card-icon svg {
  color: #C4A265;
}
.eval-option-card .card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3A3028;
  margin-bottom: 2px;
}
.eval-option-card .card-sublabel {
  font-size: 12px;
  color: #9A958F;
  font-weight: 400;
}
.eval-option-card .radio-dot {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #D4CEC6;
  background: white;
  transition: all 0.2s ease;
}
.eval-option-card.selected .radio-dot {
  border-color: #C4A265;
  background: #C4A265;
  box-shadow: inset 0 0 0 3px white;
}

/* ── List-style Options ── */
.eval-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eval-option-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border: 2px solid #E5E1DA;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
}
.eval-option-row:hover {
  border-color: #C4A265;
  background: #FBF8F3;
}
.eval-option-row.selected {
  border-color: #C4A265;
  background: #FBF8F3;
}
.eval-option-row .row-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #D4CEC6;
  flex-shrink: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eval-option-row.selected .row-radio {
  border-color: #C4A265;
  background: #C4A265;
}
.eval-option-row.selected .row-radio::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
}
.eval-option-row .row-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.eval-option-row .row-text {
  flex: 1;
}
.eval-option-row .row-label {
  font-size: 15px;
  font-weight: 600;
  color: #3A3028;
}
.eval-option-row .row-sublabel {
  font-size: 13px;
  color: #9A958F;
  margin-top: 2px;
}

/* ── Checkbox Options ── */
.eval-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eval-checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 2px solid #E5E1DA;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #3A3028;
}
.eval-checkbox-row:hover {
  border-color: #C4A265;
}
.eval-checkbox-row.checked {
  border-color: #C4A265;
  background: #FBF8F3;
}
.eval-checkbox-row .checkbox {
  width: 20px; height: 20px;
  border-radius: 4px;
  border: 2px solid #D4CEC6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 12px;
  color: transparent;
}
.eval-checkbox-row.checked .checkbox {
  border-color: #C4A265;
  background: #C4A265;
  color: white;
}

/* ── Form Inputs ── */
.eval-form-group {
  margin-bottom: 18px;
}
.eval-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.eval-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3A3028;
  margin-bottom: 6px;
}
.eval-input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #3A3028;
  background: white;
  border: 2px solid #E5E1DA;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s ease;
}
.eval-input:focus {
  border-color: #C4A265;
}
.eval-input::placeholder {
  color: #B0AAA3;
}
.eval-input.error {
  border-color: #D44;
}
.eval-select {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #3A3028;
  background: white;
  border: 2px solid #E5E1DA;
  border-radius: 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239A958F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.eval-select:focus {
  border-color: #C4A265;
}
.eval-hipaa-note {
  font-size: 13px;
  color: #9A958F;
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Next Button ── */
.eval-next-btn {
  display: block;
  width: 100%;
  padding: 16px 32px;
  margin-top: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #C4A265, #B8935A);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(196, 162, 101, 0.3);
}
.eval-next-btn:hover {
  background: linear-gradient(135deg, #B8935A, #A8834E);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 162, 101, 0.4);
}
.eval-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.eval-next-btn .btn-arrow {
  margin-left: 6px;
}
.eval-next-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.eval-next-btn.loading::after {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Medical Review Card ── */
.eval-review-card {
  background: white;
  border: 1px solid #E5E1DA;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.eval-review-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.eval-review-stat {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #3A3028;
}
.eval-review-stat strong {
  font-weight: 700;
}
.eval-review-message {
  font-size: 15px;
  color: #6B6560;
  line-height: 1.6;
  padding: 14px 0;
  border-top: 1px solid #E5E1DA;
}
.eval-review-message strong {
  color: #3A3028;
  font-weight: 700;
}

/* ── Medication Selection Card ── */
.eval-med-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eval-med-card {
  background: white;
  border: 2px solid #E5E1DA;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.eval-med-card:hover {
  border-color: #C4A265;
  box-shadow: 0 4px 20px rgba(196, 162, 101, 0.12);
}
.eval-med-card.selected {
  border-color: #C4A265;
  background: #FBF8F3;
  box-shadow: 0 4px 20px rgba(196, 162, 101, 0.15);
}
.eval-med-card .med-badge {
  position: absolute;
  top: -10px; right: 16px;
  padding: 4px 14px;
  background: #4A6741;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
}
.eval-med-card .med-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: #3A3028;
  margin-bottom: 6px;
}
.eval-med-card .med-desc {
  font-size: 14px;
  color: #6B6560;
  line-height: 1.5;
  margin-bottom: 12px;
}
.eval-med-card .med-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.eval-med-card .med-price .amount {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: #C4A265;
}
.eval-med-card .med-price .period {
  font-size: 14px;
  color: #9A958F;
}
.eval-med-card .med-features {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.eval-med-card .med-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B6560;
}
.eval-med-card .med-features li .check {
  color: #4A6741;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Disqualified Screen ── */
.eval-disqualified {
  text-align: center;
  padding: 40px 0;
}
.eval-disqualified .dq-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.eval-disqualified h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: #3A3028;
  margin-bottom: 12px;
}
.eval-disqualified p {
  font-size: 15px;
  color: #6B6560;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 24px;
}
.eval-disqualified .dq-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 1px solid #E5E1DA;
  border-radius: 10px;
  font-size: 14px;
  color: #4A6741;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.eval-disqualified .dq-support:hover {
  border-color: #4A6741;
  background: #E8EDE6;
}

/* ── Success Screen ── */
.eval-success {
  text-align: center;
  padding: 40px 0;
}
.eval-success .success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #E8EDE6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}
.eval-success h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: #3A3028;
  margin-bottom: 8px;
}
.eval-success p {
  font-size: 15px;
  color: #6B6560;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
}
.eval-success .success-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 28px;
  text-align: left;
}
.eval-success .success-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 1px solid #E5E1DA;
  border-radius: 10px;
}
.eval-success .success-step .step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #4A6741;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.eval-success .success-step .step-text {
  font-size: 14px;
  color: #3A3028;
  line-height: 1.5;
}
.eval-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: #4A6741;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(74, 103, 65, 0.25);
}
.eval-cta-btn:hover {
  background: #3D5636;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74, 103, 65, 0.35);
  color: white;
}

/* ── Weight Input Slider ── */
.eval-weight-display {
  text-align: center;
  margin-bottom: 16px;
}
.eval-weight-value {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: #3A3028;
  line-height: 1;
}
.eval-weight-unit {
  font-size: 16px;
  color: #9A958F;
  margin-left: 4px;
}
.eval-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #E5E1DA;
  outline: none;
  margin: 16px 0;
}
.eval-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #C4A265;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(196, 162, 101, 0.4);
  transition: transform 0.15s ease;
}
.eval-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.eval-slider::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #C4A265;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(196, 162, 101, 0.4);
}
.eval-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9A958F;
}

/* ── Pace Projection ── */
.eval-projection {
  background: white;
  border: 1px solid #E5E1DA;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}
.eval-projection .proj-rate {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #3A3028;
  margin-bottom: 4px;
}
.eval-projection .proj-rate .accent {
  color: #C4A265;
}
.eval-projection .proj-time {
  font-size: 14px;
  color: #6B6560;
}
.eval-projection .proj-time strong {
  color: #3A3028;
}

/* ── Toast / Error Messages ── */
.eval-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #3A3028;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 200;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.eval-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ── Animations ── */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-in {
  animation: fadeInUp 0.5s ease both;
}

/* ── DOB Dropdowns ── */
.eval-dob-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 10px;
}

/* ── Med Badge Alt ── */
.med-badge-alt {
  position: absolute;
  top: -10px; right: 16px;
  padding: 4px 14px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
}

/* ── Input with Icon ── */
.eval-input-icon-wrap {
  position: relative;
}
.eval-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.eval-input-with-icon {
  padding-left: 42px;
}

/* ── Trust Badges ── */
.eval-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.eval-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4A6741;
}

/* ── Ready Section ── */
.eval-ready-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.eval-ready-content {
  flex: 1;
}
.eval-ready-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #4A6741;
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 12px;
}
.eval-ready-image {
  flex-shrink: 0;
}

/* ── Green Banner ── */
.eval-green-banner {
  background: #4A6741;
  color: white;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── What Is Included ── */
.eval-included-section {
  padding: 20px 0;
}
.eval-included-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #3A3028;
  margin-bottom: 18px;
}
.eval-included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #F0EBE3;
}
.eval-included-item:last-child {
  border-bottom: none;
}
.eval-included-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eval-included-label {
  font-size: 15px;
  font-weight: 600;
  color: #3A3028;
}
.eval-included-sub {
  font-size: 13px;
  color: #4A6741;
  font-style: italic;
  margin-top: 2px;
}

/* ── Guarantee ── */
.eval-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid #E5E1DA;
  border-radius: 12px;
  margin-top: 20px;
}
.eval-guarantee-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #E8EDE6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HIPAA Banner ── */
.eval-hipaa-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #E8EDE6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #3A3028;
  margin-bottom: 24px;
  text-align: center;
}

/* ── Features Checklist ── */
.eval-features-checklist {
  background: white;
  border: 1px solid #E5E1DA;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}
.eval-feature-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3A3028;
  padding: 8px 0;
  line-height: 1.4;
}

/* ── Package Cards ── */
.eval-package-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eval-package-card {
  background: white;
  border: 2px solid #E5E1DA;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.eval-package-card:hover {
  border-color: #C4A265;
}
.eval-package-card.selected {
  border-color: #4A6741;
  box-shadow: 0 0 0 1px #4A6741;
}
.eval-package-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 4px 14px;
  background: #4A6741;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.eval-package-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #3A3028;
  margin-bottom: 4px;
}
.eval-package-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: #4A6741;
  margin-bottom: 6px;
}
.eval-package-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #9A958F;
}
.eval-package-desc {
  font-size: 13px;
  color: #6B6560;
  line-height: 1.5;
}

/* ── FAQ Section ── */
.eval-faq-section {
  background: #3A3028;
  border-radius: 16px;
  padding: 32px 24px;
  margin-top: 28px;
}
.eval-faq-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #FAFAF7;
  text-align: center;
  margin-bottom: 20px;
}
.eval-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  cursor: pointer;
}
.eval-faq-item:last-child {
  border-bottom: none;
}
.eval-faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #FAFAF7;
}
.eval-faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #FAFAF7;
}
.eval-faq-item.open .eval-faq-arrow {
  transform: rotate(90deg);
}
.eval-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 13px;
  color: rgba(250,250,247,0.7);
  line-height: 1.7;
  padding: 0 0 0 30px;
}
.eval-faq-item.open .eval-faq-a {
  max-height: 200px;
  padding: 10px 0 4px 30px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .eval-topbar {
    padding: 10px 16px;
  }
  .eval-topbar-logo {
    height: 22px;
  }
  .eval-stepper {
    padding: 12px 16px;
    top: 45px;
  }
  .eval-step-line {
    width: 30px;
    margin: 0 6px;
  }
  .eval-step-dot .step-label {
    font-size: 11px;
  }
  .eval-main {
    padding-top: 100px;
  }
  .eval-container {
    padding: 0 16px;
  }
  .eval-back {
    top: 100px;
    left: 12px;
    width: 36px; height: 36px;
  }
  .eval-heading {
    font-size: 1.5rem;
  }
  .eval-options {
    flex-direction: column;
  }
  .eval-option-card {
    min-width: auto;
  }
  .eval-form-row {
    grid-template-columns: 1fr;
  }
  .eval-med-card {
    padding: 20px;
  }
  .eval-ready-section {
    flex-direction: column;
    text-align: center;
  }
  .eval-ready-image {
    order: -1;
  }
  .eval-trust-badges {
    flex-direction: column;
    align-items: center;
  }
  .eval-faq-section {
    padding: 24px 16px;
  }
  .eval-package-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .eval-step-dot .step-label {
    display: none;
  }
  .eval-step-line {
    width: 40px;
  }
}
