:root {
  --bg: #0F2A43;
  --surface: #0F2A43;
  --surface2: #0b253d;
  --border: rgba(255,255,255,0.07);
  --accent: #83d1dc;
  --accent2: #357480;
  --accent3: #acd8ab;
  --gold: #f59e0b;
  --green: #10b981;
  --red: #ef4444;
  --text: #e2e8f0;
  --muted: #64748b;
  --white: #fff;
  --radius: 16px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}
/* BG */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 15% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 85% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 55%), radial-gradient(ellipse 40% 30% at 50% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
}

.bg-dots {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(46, 177, 190, 0.55) 0%, #ffffff 50%, rgba(46, 177, 190, 0.55) 100%), url("../images/pattern.png") no-repeat bottom/cover;
}

/* LAYOUT */
.shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* PROGRESS */
.progress-bar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
  width: 0%;
}

/* HEADER CARD */
.header-card {
  background: linear-gradient(135deg, rgba(15, 42, 67, 0.9), rgba(46, 177, 190, 0.6));
  border-radius: 20px;
  padding: 40px 36px;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(46, 177, 190, 0.3), rgba(52, 116, 128, 0.2));
  z-index: -1;
}

.org-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.bdg-1 {
  width: 25%;
  max-height: 120px;
  height: 120px;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}
.bdg-1 img {
  height: 100%;
}
@media (max-width: 800px) {
  .bdg-1 {
    width: 30%;
  }
}
@media (max-width: 800px) {
  .bdg-1 {
    height: auto;
  }
}
@media (max-width: 450px) {
  .bdg-1 {
    width: 30%;
  }
}

.badge {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.badge-blue {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
}

.badge-purple {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

.header-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.header-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.header-desc {
  font-size: 13.5px;
  color: #ffffff;
  line-height: 1.75;
  margin: 0 auto 16px;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.header-note {
  font-size: 12px;
  color: #64748b;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 10px 16px;
  display: inline-block;
}

/* SECTION LABEL */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent2);
  margin: 36px 0 16px;
  padding: 0;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.3), transparent);
}

/* STEP CARD */
.step {
  background: linear-gradient(135deg, rgba(15, 42, 67, 0.9), rgba(46, 177, 190, 0.6));
  border: 1px solid rgba(46, 177, 190, 0.8);
  border-radius: var(--radius);
  padding: 28px;
  margin: 50px 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}

.step:focus-within {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Q label */
.q-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 15px;
}

div.mob-info {
  padding: 0 0 0.8rem 0;
  margin: 0;
  display: none;
  visibility: hidden;
  opacity: 0;
}
div.mob-info span {
  font-size: 12px;
}
@media (max-width: 600px) {
  div.mob-info {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}

.q-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-top: 1px;
}

.q-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}

/* LIKERT */
.likert-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
}

.likert-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px; /*min-width:480px;*/
  border-collapse: separate;
  border-spacing: 0px 25px;
}

.likert-table th {
  font-size: 10.5px;
  font-weight: 600;
  color: #efecec;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 4px 6px;
}

.likert-table th:first-child {
  text-align: left;
}

.likert-table td {
  padding: 15px 10px;
  text-align: center;
  vertical-align: middle;
  border-radius: 10px;
}

.likert-table td:first-child {
  text-align: left;
  font-size: 13px;
  color: #cdd2da;
  padding-right: 14px;
}

.likert-row td {
  background: rgba(15, 42, 67, 0.5);
  transition: background 0.2s;
}

.likert-row td:first-child { /*border-radius:10px 0 0 10px;*/ }

.likert-row td:last-child { /*border-radius:0 10px 10px 0;*/ }

.likert-row.answered td {
  background: rgba(59, 130, 246, 0.08);
}

.likert-table td p {
  padding: 15px 0;
}

.likert-table tr.mob-info {
  display: none;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .likert-table tr.mob-info {
    display: flex;
    visibility: visible;
    opacity: 1;
  }
}

.likert-table tr.mob-info td {
  padding: 0 10px;
}

/* Custom radio */
.radio-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
}

.radio-circle:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.12);
}

.radio-circle.selected {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.radio-circle.selected::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

/* SCALE (single row) */
.scale-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: stretch;
}

.scale-opt {
  flex: 1;
  min-width: 0;
  padding: 12px 6px 10px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: rgba(15, 42, 67, 0.5);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.scale-opt:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
}

.scale-opt.selected {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.18);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.3);
}

.scale-num {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.2s;
}

.scale-opt.selected .scale-num {
  color: var(--accent);
}

.scale-label {
  font-size: 10px;
  line-height: 1.3;
  transition: color 0.2s;
}

.scale-opt.selected .scale-label {
  color: #93c5fd;
}

/* Scale legend */
.scale-legend {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  padding: 0 4px;
}

/* CHECKBOX */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: rgba(15, 42, 67, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.check-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.07);
}

.check-item.selected {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.14);
}

.check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.check-item.selected .check-box {
  background: var(--accent);
  border-color: var(--accent);
}

.check-box svg {
  display: none;
}

.check-item.selected .check-box svg {
  display: block;
}

.check-label {
  font-size: 14px;
  color: var(--text);
}

/* RADIO LIST */
.radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: rgba(15, 42, 67, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.radio-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.07);
}

.radio-item.selected {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.14);
}

.radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.radio-item.selected .radio-dot {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 4px var(--accent);
  background: #fff;
}

.radio-label {
  font-size: 14px;
  color: var(--text);
}

/* TEXTAREA */
.survey-textarea {
  width: 100%;
  background: rgba(15, 42, 67, 0.5);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.2s;
}

.survey-textarea:focus {
  border-color: var(--accent);
}

.survey-textarea::-moz-placeholder {
  color: var(--muted);
}

.survey-textarea::placeholder {
  color: var(--muted);
}

/* NAV */
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
}
@media (max-width: 500px) {
  .nav-wrap {
    flex-direction: column;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-prev {
  background: rgba(15, 42, 67, 0.5);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-prev:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(37, 36, 36, 0.75);
}

.btn-next {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.4);
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
}

.btn-submit {
  background: linear-gradient(135deg, var(--green), #059669);
  color: #fff;
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.4);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* STEP COUNTER */
.step-counter {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-counter span {
  color: #357480;
}

/* PAGES */
.page {
  display: none;
  visibility: hidden;
  opacity: 0;
  margin-left: 0;
}

.page.active {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* SUCCESS */
.success-page {
  text-align: center;
  padding: 60px 20px;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  direction: ltr !important;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.7);
  }
}
.success-title {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--green), #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* DEMOGRAPHIC GRID */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 520px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}
/* TOOLTIP scale labels */
.scale-wrap-labeled {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Input text */
.survey-input {
  width: 100%;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.survey-input:focus {
  border-color: var(--accent);
}

.survey-input::-moz-placeholder {
  color: var(--muted);
}

.survey-input::placeholder {
  color: var(--muted);
}

.input-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}

/* Ripple */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
/* Responsive */
@media (max-width: 600px) {
  .header-card {
    padding: 28px 20px;
  }
  .step {
    padding: 20px 16px;
  }
  .scale-opt .scale-label {
    display: none;
  }
  .scale-num {
    font-size: 16px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}
.other-input-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: rgba(15, 42, 67, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  display: none;
  margin-top: 12px;
}
.other-input-wrap input {
  width: 100%;
  border: 1px solid red;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
}/*# sourceMappingURL=style.css.map */