
/* take survey css */

.survey-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  background: #fafafa;
  flex-wrap: wrap;
}

/* LEFT PROGRESS */
.survey-progress {
  flex: 0 0 260px;
}

.survey-progress ul {
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.survey-progress ul::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 25px;
    width: 2px;
    height: 89%;
    background: #e0e0e0;
}

.survey-progress li {
  position: relative;
  padding: 25px 0 15px 25px;
  font-size: 15px;
  color: #555;
}

.survey-progress li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 19px;
  width: 13px;
  height: 13px;
  border: 9px solid #ccc;
  border-radius: 50%;
  background: #fff;
}

.survey-progress li.completed::before {
   content: "✓";
  background: #f97316;
  border-color: #f97316;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: anchor-center;
}

.survey-progress li.active::before {
  border: 9px solid #f97316;
  background: #fff;
}

.survey-progress li.completed,
.survey-progress li.active {
  color: #f97316;
  font-weight: 600;
}

/* RIGHT FORM */
.survey-form {
  flex: 1;
  min-width: 320px;
}

.survey-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0px 27px 62px 5px #00000005;
}

.survey-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 44px;
    color: #101828;
}

.survey-page {
    background: #fdf3ec;
    padding: 20px 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-weight: 700;
    display: inline-block;
    color: #333;
    width: 100%;
    font-size: 20px;
}

.survey-page span {
    color: #392A4A;
    font-size: 16px;
    font-weight: 400;
}

.survey-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #101828;
    font-weight: 500;
}

.question {
  margin-bottom: 10px;
  font-weight: 600;
}

.radio, .checkbox {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

input[type="radio"], input[type="checkbox"] {
  margin-right: 8px;
}

h4 {
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 8px;
  color: #222;
}

.note {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.input-field {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.small {
  font-size: 13px;
  margin-bottom: 15px;
}

.small a {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
}

.footer-note {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 25px;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.calendar-btn {
  background: #4b284e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
}

.next-btn {
    background: #322441;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .survey-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .survey-progress {
    order: 1;
  }

  .survey-form {
    order: 2;
  }

  .survey-card {
    padding: 25px;
  }
}

.investor-survey-body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f5f5f5;
            padding: 40px 20px;
            line-height: 1.6;
        }

        .investor-survey-container {
            max-width: 640px;
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }

        .investor-survey-title {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
        }

        .investor-survey-page-indicator {
            display: inline-block;
            background-color: #fef3e8;
            color: #1a1a1a;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            margin-bottom: 32px;
        }

        .investor-survey-section-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .investor-survey-question {
            font-size: 14px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .investor-survey-radio-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .investor-survey-radio-option {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
        }

        .investor-survey-radio-input {
            margin-top: 2px;
            margin-right: 12px;
            cursor: pointer;
            accent-color: #2d3748;
        }

        .investor-survey-radio-label {
            cursor: pointer;
            flex: 1;
        }

        .investor-survey-option-title {
            display: block;
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .investor-survey-option-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }

        .investor-survey-button-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .investor-survey-btn {
            padding: 12px 32px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .investor-survey-btn-back {
            background-color: white;
            border: 1px solid #d1d5db;
            color: #374151;
        }

        .investor-survey-btn-back:hover {
            background-color: #f9fafb;
        }

        .investor-survey-btn-next {
            background-color: #2d3748;
            border: none;
            color: white;
        }

        .investor-survey-btn-next:hover {
            background-color: #1a202c;
        }

        @media (max-width: 640px) {
            .investor-survey-container {
                padding: 24px;
            }

            .investor-survey-title {
                font-size: 20px;
            }

            .investor-survey-btn {
                padding: 10px 24px;
            }
        }

  .impact-amount-body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f5f5f5;
            padding: 40px 20px;
            line-height: 1.6;
        }

        .impact-amount-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }

        .impact-amount-title {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
        }

        .impact-amount-page-indicator {
            display: inline-block;
            background-color: #fef3e8;
            color: #1a1a1a;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            margin-bottom: 32px;
        }

        .impact-amount-section-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
        }

        .impact-amount-question {
            font-size: 14px;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .impact-amount-input-wrapper {
            margin-bottom: 24px;
        }

        .impact-amount-input {
            width: 100%;
            padding: 12px 16px;
            font-size: 14px;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            background-color: #f9fafb;
            color: #6b7280;
            transition: border-color 0.2s, background-color 0.2s;
        }

        .impact-amount-input:focus {
            outline: none;
            border-color: #2d3748;
            background-color: white;
        }

        .impact-amount-note-section {
            margin-bottom: 24px;
        }

        .impact-amount-note-title {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 14px;
            display: inline;
        }

        .impact-amount-note-text {
            color: #6b7280;
            font-size: 14px;
            display: inline;
        }

        .impact-amount-description {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .impact-amount-info-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background-color: #8b5cf6;
            color: white;
            border-radius: 50%;
            font-size: 14px;
            font-weight: 600;
            margin: 0 2px;
            vertical-align: middle;
        }

        .impact-amount-button-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .impact-amount-btn {
            padding: 12px 32px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .impact-amount-btn-back {
            background-color: white;
            border: 1px solid #d1d5db;
            color: #374151;
        }

        .impact-amount-btn-back:hover {
            background-color: #f9fafb;
        }

        .impact-amount-btn-next {
            background-color: #2d3748;
            border: none;
            color: white;
        }

        .impact-amount-btn-next:hover {
            background-color: #1a202c;
        }

        @media (max-width: 640px) {
            .impact-amount-container {
                padding: 24px;
            }

            .impact-amount-title {
                font-size: 20px;
            }

            .impact-amount-btn {
                padding: 10px 24px;
            }
        }


.impact-priorities-body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f5f5f5;
            padding: 40px 20px;
            line-height: 1.6;
        }

        .impact-priorities-container {
            max-width: 700px;
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }

        .impact-priorities-title {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
        }

        .impact-priorities-page-indicator {
            display: inline-block;
            background-color: #fef3e8;
            color: #1a1a1a;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            margin-bottom: 32px;
        }

        .impact-priorities-section-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
        }

        .impact-priorities-question {
            font-size: 14px;
            color: #1a1a1a;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .impact-priorities-subtitle {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 24px;
        }

        .impact-priorities-checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .impact-priorities-checkbox-option {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
        }

        .impact-priorities-checkbox-input {
            margin-top: 2px;
            margin-right: 12px;
            cursor: pointer;
            width: 18px;
            height: 18px;
            accent-color: #10b981;
        }

        .impact-priorities-checkbox-label {
            cursor: pointer;
            flex: 1;
        }

        .impact-priorities-option-title {
            display: block;
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 14px;
        }

        .impact-priorities-option-description {
            color: #6b7280;
            font-size: 13px;
            line-height: 1.5;
        }

        .impact-priorities-button-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .impact-priorities-btn {
            padding: 12px 32px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .impact-priorities-btn-back {
            background-color: white;
            border: 1px solid #d1d5db;
            color: #374151;
        }

        .impact-priorities-btn-back:hover {
            background-color: #f9fafb;
        }

        .impact-priorities-btn-next {
            background-color: #2d3748;
            border: none;
            color: white;
        }

        .impact-priorities-btn-next:hover {
            background-color: #1a202c;
        }

        @media (max-width: 640px) {
            .impact-priorities-container {
                padding: 24px;
            }

            .impact-priorities-title {
                font-size: 20px;
            }

            .impact-priorities-btn {
                padding: 10px 24px;
            }
        }

 .survey-summary-body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f5f5f5;
            padding: 40px 20px;
            line-height: 1.6;
        }

        .survey-summary-container {
            /* max-width: 500px; */
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            padding: 32px;
        }

        .survey-summary-header {
            margin-bottom: 24px;
        }

        .survey-summary-main-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .survey-summary-intro {
            margin-bottom: 16px;
        }

        .survey-summary-intro-title {
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .survey-summary-intro-text {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.5;
        }

        .survey-summary-hint {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.5;
        }

        .survey-summary-hint-bold {
            font-weight: 600;
        }

        .survey-summary-link {
            color: #3b82f6;
            text-decoration: none;
        }

        .survey-summary-link:hover {
            text-decoration: underline;
        }

        .survey-summary-card {
            background-color: #fef9f5;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 16px;
            position: relative;
        }

        .survey-summary-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .survey-summary-card-title {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .survey-summary-edit-btn {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 12px;
            background-color: white;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            font-size: 12px;
            color: #374151;
            cursor: pointer;
            transition: all 0.2s;
        }

        .survey-summary-edit-btn:hover {
            background-color: #f9fafb;
            border-color: #d1d5db;
        }

        .survey-summary-edit-icon {
            width: 12px;
            height: 12px;
        }

        .survey-summary-card-question {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .survey-summary-card-answer {
            font-size: 13px;
            color: #1a1a1a;
            line-height: 1.5;
        }

        .survey-summary-card-answer-bold {
            font-weight: 600;
        }

        .survey-summary-card-answer-section {
            margin-bottom: 12px;
        }

        .survey-summary-card-answer-section:last-child {
            margin-bottom: 0;
        }

        .survey-summary-submit-container {
            display: flex;
            justify-content: flex-end;
            margin-top: 24px;
        }

        .survey-summary-submit-btn {
            padding: 12px 32px;
            background-color: #2d3748;
            color: white;
            border: none;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .survey-summary-submit-btn:hover {
            background-color: #1a202c;
        }

        @media (max-width: 640px) {
            .survey-summary-container {
                padding: 24px;
            }

            .survey-summary-main-title {
                font-size: 16px;
            }
        }