* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #f3bd00;
  border-radius: 3px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #f3bd00;
  width: 8px;
}

:root {
  --color-primary0: #fffbf0;
  --color-primary10: #fff4d1;
  --color-primary40: #f5c400;
  --color-primary50: #f3bd00;
  --color-secondary40: #f4c017;
  --color-black0: #ffffff;
  --color-black5: #f5f5f5;
  --color-black10: #e8e8e8;
  --color-black60: #5c5c5c;
  --color-black70: #424242;
  --color-black80: #292929;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

/* Loading State */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --primary: 45 100% 48%;
  --primary-foreground: 222.2 84% 4.9%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 45 100% 95%;
  --destructive: 0 84.2% 60.2%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.container {
  background-color: #ffd124;
  margin: 0 auto;
  padding: 1rem;
  /* min-height: calc(100vh - 2rem); */
  /* display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; */
  min-height: 100vh;
}
.content {
  max-width: 64rem;
  margin: 0 auto;
}

.header-logo {
  margin-bottom: 1rem;
  text-align: center;
}

.header-logo img {
  width: 230px;
  border-radius: 15px;
}

/* Hero Section */
.hero {
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  /* color: #d1d5db; */
  /* max-width: 56rem; */
  line-height: 1.6;
}

/* Card */
.card {
  width: 100%;
  /* max-width: 56rem; */
  margin: 0 auto;
  padding: 1.5rem;
  background: #f5f5f5;
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.form-header {
  text-align: center;
}

.form-header h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #1c1c1e;
}

.form-header p {
  font-size: 0.875rem;
  color: #1c1c1e;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.input {
  height: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid #1c1c1e;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.1);
  color: #1c1c1e;
  font-size: 0.875rem;
  transition: all 0.2s;
  font-family: "Poppins";
}

.input::placeholder {
  color: #9ca3af;
  font-family: "Poppins";
}

.input:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.input.success {
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.error-message {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.error-message.show {
  opacity: 1;
}

.button {
  padding: 0 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Poppins";
}

.button-height {
  height: 2.75rem;
}

.button #form-button-text {
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.button-primary {
  background-color: hsl(45 100% 48%);
  color: hsl(222.2 84% 4.9%);
}

.button-secondary {
  background-color: hsl(210 40% 96.1%);
  color: hsl(222.2 84% 4.9%);
  border: 1px solid hsl(var(--primary));
}
.button-primary:hover:not(:disabled) {
  background-color: hsla(45, 100%, 48%, 0.9);
}

.button-outline {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button-outline:hover:not(:disabled) {
  background-color: hsl(var(--primary) / 0.9);
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button-full {
  width: 100%;
}

/* OTP Input */
.otp-container {
  display: flex;
  justify-content: center;
}

.otp-group {
  display: flex;
  gap: 0.5rem;
}

.otp-slot {
  width: 3rem;
  height: 3rem;
  border: 1px solid #1c1c1e;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.1);
  color: #1c1c1e;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  font-family: "Poppins";
}

.otp-slot:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.otp-slot.filled {
  background: rgba(251, 191, 36, 0.1);
  border-color: hsl(var(--primary));
}

.button-group {
  display: flex;
  gap: 0.75rem;
}

/* Timer text */
.otp-timer-text {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Toast */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: white;
  color: black;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 999999999;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.destructive {
  background: hsl(var(--destructive));
  color: white;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid hsl(var(--primary));
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hidden class */
.hidden {
  display: none;
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    padding: 2rem;
    /* padding-top: 5rem;
    padding-bottom: 4rem; */
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.app-form-container {
  margin: 0px auto;
  /* padding-bottom: 104px; */
}

.header-section {
  position: relative;
  z-index: 2;
}

.header-content {
  max-width: 532px;
  margin: 0px auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.navigation-header {
  width: calc(-32px + 100vw);
  transform: translateX(-50%);
  position: relative;
  left: 50%;
  max-width: 1032px;
}

.navigation-bar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0px;
}

.progress-bar {
  background-color: var(--color-black10);
  border-radius: 10px;
  position: relative;
  height: 5px;
  overflow: hidden;
  width: 100%;
  display: block;
}

.progress-bar::after {
  background-color: var(--color-secondary40);
  content: "";
  left: 0px;
  height: 100%;
  position: absolute;
  top: 0px;
  width: var(--progress-width, 7.14%);
  transition: width 0.3s ease;
}

.back-button {
  align-items: center;
  background: transparent;
  border: 0px;
  color: var(--color-black80);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  line-height: 20px;
  padding: 0px;
}

.step-counter {
  color: var(--color-black60);
  font-size: 14px;
  line-height: 20px;
}

.current-step {
  color: var(--color-primary50);
}

.step-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 18px;
  text-transform: none;
}

.total-steps {
  color: inherit;
}

.main-content {
  padding-top: 10px;
}

.app-content-wrapper {
  max-width: 532px;
  margin: 0px auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.section-spacing {
  margin-bottom: 16px;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.15px;
  line-height: 36px;
  text-transform: none;
}

.title-spacing {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 28px;
}

.description-wrapper {
  position: relative;
}

.description-container {
  margin-top: 8px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s;
  max-height: 300px;
}

.description-text {
  color: var(--color-black70);
  position: relative;
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 24px;
  text-transform: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}
.options-fieldset {
  align-items: flex-start;
  display: flex;
  flex-flow: wrap;
  width: 100%;
  border: none;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 50px;
  /* padding-right: 50px; */
}

.scroll-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.skills-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 50px;
}

.options-fieldset::-webkit-scrollbar,
.skills-container::-webkit-scrollbar {
  display: none;
}

/* Custom Scrollbar Styles */
.custom-vertical-scrollbar {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%; /* Reduced height so it doesn't span full container */
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  cursor: pointer;
  z-index: 10;
}

.vertical-scrollbar-thumb {
  position: absolute;
  width: 100%;
  background: #ffd124;
  border-radius: 4px;
  cursor: grab;
  transition: background-color 0.2s ease;
  min-height: 20px;
}

.vertical-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.6);
}

.vertical-scrollbar-thumb:active {
  cursor: grabbing;
  background: rgba(0, 0, 0, 0.8);
}

/* .options-fieldset.scrollable {
  max-height: 300px; 
  overflow-y: auto;
  padding-right: 10px;
  height: auto;
}

.skills-container.scrollable {
  max-height: 300px;
  height: auto;
  overflow-y: auto;
  padding-right: 10px;
} */

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.option-label {
  margin-bottom: 8px;
  width: 100%;
}

.option-default {
  align-items: center;
  position: relative;
  display: flex;
  background-color: var(--color-black5);
  border: 2px solid var(--color-black5);
  padding: 12px 14px;
  border-radius: 9px;
  transition: all 0.2s ease;
}

.option-clickable {
  cursor: pointer;
}

.option-clickable:hover {
  background-color: var(--color-primary0);
  border-color: var(--color-primary40);
}

label {
  display: inline-block;
  margin-bottom: 0;
}

.option-selected {
  align-items: center;
  position: relative;
  display: flex;
  padding: 12px 14px;
  border-radius: 9px;
  background: var(--color-primary0);
  border: 2px solid var(--color-primary50);
}

.radio-input {
  display: none !important;
}

.skill-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  object-fit: contain;
}

.option-content {
  display: flex;
  align-items: center;
  width: fit-content;
}

.option-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14px;
  line-height: 24px;
  margin-bottom: 0px;
  color: var(--color-black60);
}

/* Fixed Navigation */
.navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 1rem 0rem;
}

.navigation-wrapper {
  display: flex;
  gap: 0.75rem;
  max-width: 532px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.nav-button {
  flex: 1;
  height: 40px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.icon {
  width: 12px;
  height: 12px;
}

.icon-left {
  width: 20px;
  height: 20px;
}

.button-container {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.submit-button {
  align-items: center;
  border-radius: 8px;
  display: flex;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.14px;
  border: 0px;
  cursor: pointer;
  font-size: 20px;
  line-height: 28px;
  padding: 14px 16px;
  /* background-color: var(--color-primary50); */
  color: var(--color-black0);
  transition: background-color 0.2s ease;
}

.submit-button:hover:not(:disabled) {
  background-color: var(--color-primary40);
}

.submit-button:disabled {
  background-color: var(--color-primary10);
  pointer-events: none;
  opacity: 1;
}

.submit-button-previous {
  background-color: transparent;
  width: 100%;
  color: var(--color-primary50);
  border: 2px solid var(--color-primary50);
}

.submit-button-previous:hover:not(:disabled) {
  background-color: var(--color-primary0);
}

.submit-button-next {
  background-color: var(--color-primary50);
  width: 100%;
}

.submit-button-next:hover:not(:disabled) {
  background-color: var(--color-primary40);
}

.timer-display {
  color: var(--color-primary50);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

/* Skills grid layout */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.skill-section > .option-label {
  width: fit-content;
}

.category-title {
  margin: 20px 0 12px 0;
  padding: 0;
}
.category-title h4 {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0;
  padding: 8px 0;
  border-bottom: 2px solid #e5e7eb;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

/* .skill-option {
  width: 100%;
} */

.skill-option .option-default,
.skill-option .option-selected {
  justify-content: center;
  text-align: center;
  min-height: 48px;
}

input[type="checkbox"] {
  display: none;
}

.skill-option .option-text {
  font-size: 14px;
  font-weight: 500;
}

.skills-counter {
  color: var(--color-black60);
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

.footer-section {
  bottom: 0px;
  left: 0px;
  padding: 16px 0px;
  position: fixed;
  width: 100%;
  z-index: 2;
  box-shadow: rgba(46, 46, 46, 0.1) 0px -8px 24px;
  background: var(--color-black0);
}

/* .submit-button-full {
  width: 100%;
}

.submit-button:disabled {
  background-color: var(--color-primary10);
  pointer-events: none;
  opacity: 1;
}

.submit-button {
  align-items: center;
  border-radius: 8px;
  display: flex;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.14px;
  border: 0px;
  cursor: pointer;
  font-size: 20px;
  line-height: 28px;
  padding: 14px 16px;
  background-color: var(--color-primary50);
  color: var(--color-black0);
  transition: background-color 0.2s ease;
}

.submit-button:hover:not(:disabled) {
  background-color: var(--color-primary40);
}

.timer-display {
  color: var(--color-primary50);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
} */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--color-primary50);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .footer-section {
    padding: 24px;
    position: fixed;
    z-index: initial;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background-color: transparent !important;
  }

  /* .main-content {
    padding-top: 40px;
  } */

  .title-spacing {
    font-size: 26px;
    line-height: 36px;
  }

  .skills-grid {
    gap: 16px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup {
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.popup h2 {
  margin-bottom: 10px;
  text-align: center;
}

.popup p {
  text-align: center;
  /* margin-bottom: 30px; */
  font-size: 14px;
}

.assessment-container {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.assessment-header {
  color: #333;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.assessment-details {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.user-info {
  margin-bottom: 15px;
  text-align: center;
}

.user-info span {
  font-weight: 600;
  color: #f3bd00;
}

.assessment-score {
  font-size: 48px;
  font-weight: 700;
  color: #f3bd00;
  margin: 20px 0;
  text-align: center;
}

.assessment-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.back-btn-container {
  display: flex;
  justify-content: center;
}
.back-btn {
  background: transparent;
  border: 2px solid #f3bd00;
  color: #f3bd00;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.back-btn:hover {
  background: #f3bd00;
  color: white;
}

.hidden {
  display: none;
}

.progress-bar {
  width: 100%;
  background: #e5e7eb;
  border-radius: 9999px;
  height: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.progress-fill {
  background: #6b7280;
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.question-wrapper {
  padding-bottom: 104px;
}
.question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.question-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  flex: 1;
}

.timer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fee2e2;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: 82px;
}

.timer-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: #dc2626;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.timer-text {
  font-weight: 600;
  color: #dc2626;
  flex-shrink: 1; /* Allow text to shrink if needed */
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
}

.question-counter {
  font-size: 1.25rem;
  color: #6b7280;
}

.code-container {
  position: relative;
  margin: 25px 0;
  border-radius: 15px;
  overflow: hidden;
}

.code-content {
  background: #2d3748;
  overflow-x: auto;
}

pre {
  margin: 0 !important;
  padding: 20px !important;
  background: transparent !important;
  font-size: 14px;
  line-height: 1.6;
}

code {
  font-family: "Fira Code", "Consolas", "Monaco", monospace;
  color: #fff;
}

/* Enhanced city suggestions styling */
.city-suggestions {
  list-style-type: none;
  padding: 0;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

/* Show suggestions when they have content */
.city-suggestions.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.city-suggestions li {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-suggestions li:last-child {
  border-bottom: none;
}

.city-suggestions li:hover {
  background-color: #f8f9fa;
}

.city-suggestions li:active {
  background-color: #e3f2fd;
}

/* Highlighted/selected item styling */
.city-suggestions li.highlighted {
  background-color: #007bff;
  color: white;
}

/* Custom scrollbar for suggestions */
.city-suggestions::-webkit-scrollbar {
  width: 6px;
}

.city-suggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.city-suggestions::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.city-suggestions::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.city-error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .city-suggestions {
    max-height: 150px;
    border-radius: 8px;
  }

  .city-suggestions li {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.submit-btn {
  padding: 0.875rem 1.5rem;
  background: #f3bd00;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #1c1c1e;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  flex: 1;
  width: 100%;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-btn:hover:not(:disabled) {
  background: #e6a900;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 189, 0, 0.3);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.city-error-message {
  position: relative;
  top: 100%;
  left: 0;
  margin-top: 4px;
  display: none;
}

.error-message.show {
  display: block;
}
.button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.button-primary {
  background: #f3bd00;
  color: #333;
}

.button-primary:hover {
  background: #ffd124;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 189, 0, 0.3);
}

.button-full {
  width: 100%;
}

.hero-header {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #fff;
  padding: 0.8rem;
}

.hero-header img {
  width: 140px;
}

.leaderboard-header {
  background: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ededed;
  padding: 1rem;
}

.leaderboard-result-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.leaderboard-logo img {
  width: 180px;
  height: auto;
}

.leaderboard-button {
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.leaderboard-button img {
  width: 16px;
  height: 16px;
}

.leaderboard-button-primary {
  background: #f3bd00;
  color: #333;
}

.leaderboard-button-primary:hover {
  background: #ffd124;
}

@media (max-width: 768px) {
  .leaderboard-button {
    display: none;
  }
}

.leaderboard-result-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.leaderboard-assesment-result-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -2%;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
  padding-bottom: 5px;
}

/* Tab Switcher Styles */
.leaderboard-tab-switcher-container {
  max-width: fit-content;
  margin: 0 auto 30px auto;
  padding: 0 10px;
}

.leaderboard-tab-switcher {
  display: flex;
  background: white;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  gap: 4px;
  overflow-x: auto;
}

.leaderboard-tab-button {
  flex: 1;
  min-width: 120px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6b7280;
  white-space: nowrap;
  position: relative;
}

.leaderboard-tab-button.active {
  background: #ffd124;
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 209, 36, 0.3);
}

.leaderboard-tab-button:hover:not(.active) {
  background: #f3f4f6;
  color: #374151;
}

.leaderboard-tab-content {
  display: none;
  width: 100%;
  padding: 0.5rem 1rem;
}

.leaderboard-tab-content.active {
  display: block;
}

.leaderboard-card-wrapper {
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  /* align-items: center; */
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.leaderboard-assessment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-radius: 28px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #ffd124;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
  /* border: 2px solid #ffd700; */
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.leaderboard-skill-breakdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-radius: 28px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #ffd124;
  transition: all 0.3s ease;
}

.leaderboard-assesment-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.leaderboard-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  text-align: center;
}

.leaderboard-badge {
  height: 28px;
  padding: 4px 8px;
  background-color: rgba(242, 147, 13, 0.1);
  border-radius: 7.16px;
  color: #f2920c;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.leaderboard-score-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0;
  width: 100%;
}

.leaderboard-gauge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.leaderboard-gauge-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

/* Updated Gauge Styles */
.leaderboard-gauge {
  width: 240px;
  max-width: 240px;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  color: #004033;
}

.leaderboard-gauge__body {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background: #f5f5f5;
  position: relative;
  border-top-left-radius: 100% 200%;
  border-top-right-radius: 100% 200%;
  overflow: hidden;
}

.leaderboard-gauge__fill {
  position: absolute;
  top: 100%;
  left: 0;
  width: inherit;
  height: 100%;
  background: conic-gradient(
    from 90deg at 50% 50%,
    #ffeba8 0deg,
    #f79009 70.7deg,
    #ffeba8 360deg
  );
  transform-origin: center top;
  transform: rotate(0.25turn);
  transition: transform 0.2s ease-out;
}

.leaderboard-gauge__cover {
  width: 75%;
  height: 150%;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 25%;
  box-sizing: border-box;
}

.leaderboard-score-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.leaderboard-score-number {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

.leaderboard-score-label {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.leaderboard-description {
  max-width: 100%;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  padding: 0 10px;
}

.leaderboard-skill-breakdown-card {
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
  border: 1px solid #ffd124;
}

.leaderboard-skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.leaderboard-skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f3bd00;
  background-color: transparent;
}

.leaderboard-skill-name {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.15px;
  line-height: 1.2;
}

.leaderboard-progress-bar-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  height: 4px;
}

.leaderboard-progress-bar {
  position: relative;
  height: 4px;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.leaderboard-progress-red {
  background-color: #ef4444;
}
.leaderboard-progress-orange {
  background-color: #f97316;
}
.leaderboard-progress-yellow {
  background-color: #eab308;
}
.leaderboard-progress-green {
  background-color: #22c55e;
}

.leaderboard-improvement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  border-radius: 28px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #ffd124;
  height: auto;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
  /* border: 2px solid #ffd700; */
  transition: all 0.3s ease;
}

.leaderboard-header-section {
  display: flex;
  align-items: center;
  gap: 14.32px;
  width: 100%;
  padding: 0;
  flex-shrink: 0;
}

.leaderboard-header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7.16px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.leaderboard-content-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 10px;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.leaderboard-scroll-area {
  flex: 1;
  width: 100%;
  overflow-y: auto;
  min-height: 0;
}

/* Webkit browsers (Chrome, Safari, Edge) */
.leaderboard-scroll-area::-webkit-scrollbar {
  width: 6px;
}

.leaderboard-scroll-area::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.leaderboard-scroll-area::-webkit-scrollbar-thumb {
  background: #ffd124;
  border-radius: 10px;
  transition: background 0.3s ease;
  min-height: 20px;
}

.leaderboard-scroll-area::-webkit-scrollbar-thumb:hover {
  background: #f3bd00;
}

.leaderboard-scroll-area::-webkit-scrollbar-thumb:active {
  background: #e6b000;
}

.leaderboard-scroll-area::-webkit-scrollbar-corner {
  background: transparent;
}

.leaderboard-improvement-item {
  display: flex;
  width: 100%;
  min-height: auto;
  gap: 12px;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #fbbe59;
  align-items: center;
}

.leaderboard-number-badge {
  display: flex;
  flex-direction: column;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  background-color: #f3bd00;
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 2px;
}

.leaderboard-number-text {
  font-weight: 600;
  color: black;
  font-size: 12px;
  text-align: center;
}

.leaderboard-content-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.25;
  flex: 1;
}

.leaderboard-cta-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background-color: #f3bd00;
  border-radius: 14px;
  overflow: hidden;
  border: 1.79px solid transparent;
  box-shadow: 0px 1.79px 3.58px rgba(25, 24, 27, 0.25);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #0a0a0a;
  font-size: 14px;
  letter-spacing: -0.26px;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  flex-shrink: 0;
}

.leaderboard-cta-button:hover {
  background-color: #e6b000;
  transform: translateY(-1px);
}

.leaderboard-subtitle {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.leaderboard-card {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 20px auto;
  width: 100%;
  justify-content: center;
  gap: 24px;
  padding: 10px;
  border: 1px solid #ffd124;
  border-radius: 16px;
}

.leaderboard-badge-main {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.leaderboard-entries {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leaderboard-scroll-area-main {
  max-height: 276px;
  height: 100%;
  overflow-y: scroll;
  padding-right: 10px;
}

.leaderboard-scroll-area-main::-webkit-scrollbar {
  width: 6px;
}

.leaderboard-scroll-area-main::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.leaderboard-scroll-area-main::-webkit-scrollbar-thumb {
  background: #ffd124;
  border-radius: 10px;
  transition: background 0.3s ease;
  min-height: 20px;
}

.leaderboard-scroll-area-main::-webkit-scrollbar-thumb:hover {
  background: #f3bd00;
}

.leaderboard-scroll-area-main::-webkit-scrollbar-thumb:active {
  background: #e6b000;
}

.leaderboard-scroll-area-main::-webkit-scrollbar-corner {
  background: transparent;
}

.leaderboard-rank-item {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 10px;
  border: 1px solid #ffd124;
  border-radius: 12px;
}

.leaderboard-rank-item__name {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.leaderboard-rank-item__score {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leaderboard-rank-item__username {
  font-size: 18px;
  font-weight: 700;
  line-height: 38.4px;
  text-align: center;
}

.leaderboard-rank-item__rank {
  font-size: 18px;
  background-color: #ffd124;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
}
.leaderboard-rank-item__score {
  font-size: 18px;
}

.leaderboard-rank-item__username {
  font-weight: 500;
}

.leaderboard-current-user {
  background-color: #fbf1ce;
}

.leaderboard-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px;
  width: 100%;
  background-color: rgba(255, 217, 85, 0.07);
  border-radius: 14.32px;
  border: 1px solid #f3bd00;
}

.leaderboard-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.leaderboard-cta-title {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}

.leaderboard-cta-description {
  max-width: 400px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

@media (min-width: 480px) {
  .leaderboard-assesment-result-heading {
    font-size: 32px;
  }

  .leaderboard-assessment-card,
  .leaderboard-improvement-card {
    padding: 24px;
    gap: 24px;
  }

  .leaderboard-improvement-card {
    gap: 0px;
  }

  .leaderboard-header-badge {
    font-size: 14px;
  }

  .leaderboard-title {
    font-size: 20px;
  }

  .leaderboard-badge {
    height: 32px;
    font-size: 14px;
  }

  .leaderboard-gauge {
    width: 280px;
    max-width: 280px;
  }

  .leaderboard-score-number {
    font-size: 36px;
  }

  .leaderboard-score-label {
    font-size: 12px;
  }

  .leaderboard-description {
    font-size: 14px;
  }

  .leaderboard-improvement-item {
    padding: 14px;
    gap: 14px;
    align-items: center;
  }

  .leaderboard-number-badge {
    width: 32px;
    height: 32px;
  }

  .leaderboard-number-text {
    font-size: 14px;
  }

  .leaderboard-content-text {
    font-size: 14px;
  }

  .leaderboard-cta-button {
    padding: 14px;
    font-size: 15px;
  }
}

@media (min-width: 640px) {
  .leaderboard-skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .leaderboard-gauge {
    width: 320px;
    max-width: 320px;
  }

  .leaderboard-score-number {
    font-size: 40px;
  }

  .leaderboard-score-label {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .leaderboard-card-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  /* .leaderboard-assessment-card {
    max-width: 600px;

  } */

  .leaderboard-score-section {
    gap: 18px;
  }

  .leaderboard-gauge {
    width: 300px;
    max-width: 300px;
  }

  .leaderboard-score-label {
    font-size: 16px;
  }
}

.improvement-item {
  padding: 8px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  border-left: 3px solid #ffd124;
  padding-left: 12px;
  background: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* .improvement-item:hover {
  background: #e9ecef;
  transition: background-color 0.2s ease;
} */
@media (min-width: 769px) {
  .leaderboard-result-header-content {
    justify-content: space-between;
  }
}
/* Desktop styles - Made more compact */
@media (min-width: 1024px) {
  .leaderboard-header {
    padding: 0.5rem 1rem;
  }
  .leaderboard-card-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
  }

  .leaderboard-assessment-card {
    gap: 14px;
    padding: 16px;
    /* max-width: 450px; */
    width: 100%;
    margin-bottom: 20px;
  }

  .leaderboard-improvement-card {
    width: 100%;
    min-height: 362px;
    padding-block: 16px;
  }

  .leaderboard-assessment-card,
  .leaderboard-improvement-card {
    max-height: 450px;
    height: 100%;
  }

  .leaderboard-title {
    font-size: 16px;
  }

  .leaderboard-score-section {
    gap: 12px;
  }

  .leaderboard-gauge {
    width: 280px;
    max-width: 280px;
  }

  .leaderboard-score-number {
    font-size: 32px;
  }

  .leaderboard-score-label {
    font-size: 14px;
  }

  .leaderboard-description {
    font-size: 13px;
    line-height: 1.4;
  }

  .leaderboard-skills-grid {
    gap: 8px;
  }

  .leaderboard-skill-card {
    padding: 10px;
    gap: 8px;
    justify-content: space-between;
  }

  .leaderboard-skill-name {
    font-size: 12px;
  }

  .leaderboard-scroll-area {
    padding-right: 10px;
  }

  .leaderboard-scroll-area {
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    height: 100%;
  }
}

/* Large desktops */
@media (min-width: 1200px) {
  .leaderboard-card-wrapper {
    gap: 24px;
  }

  /* .leaderboard-assessment-card {
    max-width: 480px;
  } */
}

/* Extra large screens */
@media (min-width: 1440px) {
  .leaderboard-card-wrapper {
    gap: 50px;
  }
}

.highlight {
  color: #f3bd00;
  font-weight: 700;
}

/* .leaderboard-assessment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.leaderboard-improvement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.leaderboard-skill-breakdown-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
} */

.button-container {
  display: flex;
  justify-content: center;
}

.hero-button {
  background: #1c1c1e;
  color: #fff;
  font-size: 1.1rem;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.hero-stats-section {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-social-proof {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  text-align: center;
  margin-top: 1rem;
}

.hero-highlight {
  font-weight: 800;
  font-size: 1.25rem;
}

.hero-warning-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.hero-warning-stat {
  padding: 2rem;
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  background: rgba(241, 156, 86, 0.1);
}

.hero-warning-number {
  font-size: 1.8rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-align: center;
}

.hero-warning-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.hero-feature-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.badge {
  background: #f3bd00;
  color: #1c1c1e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto 1rem auto;
  font-weight: 700;
  text-align: center;
}

:root {
  --lp-bg: #f5f0e6;
  --lp-dark: #1a1a1a;
  --lp-yellow: #f3bd00;
  --lp-yellow10: #fff4d1;
  --lp-purple: #5b5ea6;
  --lp-purple-lt: #ede9fe;
  --lp-green: #16a34a;
  --lp-red: #dc2626;
  --lp-gray60: #5c5c5c;
  --lp-gray10: #e8e8e8;
}

/* ── HERO SECTION: dark theme (matches career-path-advisor) ── */

/* CSS variables for dark hero */
#heroSection {
  --bg: #0d0f14;
  --bg-alt: #111318;
  --border: #2a2d36;
  --text: #f5f5f5;
  --muted: #888;
  --heading: #ffffff;
  --nav-bg: rgba(13, 15, 20, 0.92);
  --accent: #f3bd00;
  --accent-soft: rgba(243, 189, 0, 0.1);
  --accent-glow: rgba(243, 189, 0, 0.22);
  --blue: #3b82f6;
  --green: #10b981;
  --shine: rgba(255, 255, 255, 0.07);
}

/* NAV */
#heroSection #mainNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  z-index: 1200;
}
#heroSection .logo img {
  width: 180px;
}
#heroSection .logo-white {
  display: block;
}
#heroSection .logo-dark {
  display: none;
}
#heroSection .logo-fallback {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
}
#heroSection .nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#heroSection .btn-nav {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1c1c1e;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  padding: 9px 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 16px var(--accent-glow);
  transition: box-shadow 0.2s;
}
#heroSection .btn-nav:hover {
  box-shadow: 0 6px 24px rgba(243, 189, 0, 0.45);
}

/* HERO */
#heroSection .hero {
  display: grid;
  place-items: center;
  padding: 2rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  background: #0d0f14;
}
#heroSection .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 5%, rgba(243, 189, 0, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 85%, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 85% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
#heroSection .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}
#heroSection .hero-inner {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
#heroSection .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(243, 189, 0, 0.3);
  border-radius: 100px;
  padding: 0.32rem 1rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
#heroSection .hero-eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  width: 50%;
  background: linear-gradient(110deg, transparent 0%, var(--shine) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: fse-sweep 3.5s linear infinite;
}
@keyframes fse-sweep {
  from { left: -120%; }
  to   { left:  140%; }
}
#heroSection .eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: fse-blink 1.6s ease-in-out infinite;
}
@keyframes fse-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

/* Title */
#heroSection .hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
#heroSection .hero-title span {
  color: var(--accent);
}

/* Sub */
#heroSection .hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* Track pills */
#heroSection .track-pills {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
#heroSection .track-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 100px;
  padding: 0.5rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid;
  cursor: default;
  transition: transform 0.2s;
}
#heroSection .track-pill:hover { transform: translateY(-2px); }
#heroSection .tp-fs {
  border-color: rgba(243, 189, 0, 0.4);
  color: var(--accent);
  background: rgba(243, 189, 0, 0.07);
}
#heroSection .tp-da {
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.07);
}
#heroSection .tp-ds {
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
  background: rgba(16, 185, 129, 0.07);
}
#heroSection .tp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
#heroSection .tp-fs .tp-dot { background: var(--accent); }
#heroSection .tp-da .tp-dot { background: #60a5fa; }
#heroSection .tp-ds .tp-dot { background: #34d399; }

/* CTA */
#heroSection .hero-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
#heroSection .btn-primary {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1c1e;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  padding: 13px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: box-shadow 0.2s, transform 0.2s;
}
#heroSection .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}
#heroSection .btn-primary:hover::after { left: 130%; }
#heroSection .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(243, 189, 0, 0.45);
  transform: translateY(-2px);
}

/* Stats bar */
#heroSection .hero-numbers {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.85rem 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
#heroSection .hn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
#heroSection .hn-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
#heroSection .hn-label {
  font-size: 0.67rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#heroSection .hn-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Responsive */
@media (max-width: 768px) {
  #heroSection #mainNav {
    padding: 1rem 1.25rem;
  }
  #heroSection .hero {
    padding: 2rem 1.25rem 3rem;
  }
  #heroSection .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  #heroSection .hero-sub {
    font-size: 1rem;
  }
  #heroSection .hero-numbers {
    gap: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
  #heroSection .hn-sep {
    display: none;
  }
}

/* Hero visual card */
.lp-hero-visual {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}
.lp-card-header {
  background: var(--lp-dark);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-card-header-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
.lp-card-dots {
  display: flex;
  gap: 6px;
}
.lp-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.lp-card-dot.r {
  background: #ef4444;
}
.lp-card-dot.y {
  background: #f59e0b;
}
.lp-card-dot.g {
  background: #22c55e;
}
.lp-card-body {
  padding: 20px;
}
.lp-mini-role {
  font-size: 12px;
  color: var(--lp-gray60);
  margin-bottom: 2px;
  font-weight: 500;
}
.lp-mini-role-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

/* score meter */
.lp-score-bar-wrap {
  margin-bottom: 14px;
}
.lp-score-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6px;
}
.lp-score-bar-num {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--lp-dark);
  line-height: 1;
}
.lp-score-bar-label {
  font-size: 10px;
  color: var(--lp-gray60);
  font-weight: 500;
}
.lp-score-track {
  height: 8px;
  background: var(--lp-gray10);
  border-radius: 4px;
  overflow: hidden;
}
.lp-score-fill {
  height: 100%;
  width: 62%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.lp-mini-risk-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: #ffedd5;
  color: #c2410c;
  font-family: "Poppins", sans-serif;
}
.lp-mini-outputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-mini-output-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #f9f9f9;
  border-radius: 8px;
}
.lp-mini-output-label {
  font-size: 11px;
  color: var(--lp-gray60);
}
.lp-mini-output-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-dark);
}
.lp-mini-output-val.green {
  color: var(--lp-green);
}
.lp-mini-output-val.red {
  color: var(--lp-red);
}
.lp-mini-output-val.purple {
  color: var(--lp-purple);
}
.lp-card-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 30%, transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
}
.lp-unlock-pill {
  background: var(--lp-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s;
}
.lp-unlock-pill:hover {
  background: #4a4d8f;
  transform: translateY(-1px);
}

/* ── PROBLEM ── */
.lp-problem {
  background: var(--lp-dark);
  padding: 80px 32px;
}
.lp-problem-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.lp-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-yellow);
  margin-bottom: 20px;
  display: block;
  font-family: "Poppins", sans-serif;
}
.lp-problem-h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}
.lp-problem-h2 em {
  font-style: italic;
  color: var(--lp-yellow);
}
.lp-problem-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}
.lp-problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}
.lp-problem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s;
}
.lp-problem-card:hover {
  border-color: rgba(243, 189, 0, 0.4);
}
.lp-problem-card-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}
.lp-problem-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}
.lp-problem-card-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── OUTPUTS / 4 RESULTS ── */
.lp-outputs {
  background: var(--lp-bg);
  padding: 80px 32px;
}
.lp-outputs-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.lp-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.lp-h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--lp-dark);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.lp-h2-sub {
  font-size: 0.95rem;
  color: var(--lp-gray60);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}
.lp-outputs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-output-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1.5px solid var(--lp-gray10);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.lp-output-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
}
.lp-output-card.c1::before {
  background: var(--lp-red);
}
.lp-output-card.c2::before {
  background: #f59e0b;
}
.lp-output-card.c3::before {
  background: var(--lp-green);
}
.lp-output-card.c4::before {
  background: var(--lp-purple);
}
.lp-output-card:hover {
  border-color: var(--lp-yellow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.lp-output-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.lp-output-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gray60);
  margin-bottom: 8px;
  display: block;
  font-family: "Poppins", sans-serif;
}
.lp-output-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}
.lp-output-desc {
  font-size: 13px;
  color: var(--lp-gray60);
  line-height: 1.65;
}
.lp-output-range {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
}
.c1 .lp-output-range {
  background: #fee2e2;
  color: #b91c1c;
}
.c2 .lp-output-range {
  background: #fef3c7;
  color: #92400e;
}
.c3 .lp-output-range {
  background: #dcfce7;
  color: #166534;
}
.c4 .lp-output-range {
  background: var(--lp-purple-lt);
  color: #4338ca;
}

/* ── HOW IT WORKS ── */
.lp-how {
  background: #fff;
  padding: 80px 32px;
}
.lp-how-inner {
  max-width: 860px;
  margin: 0 auto;
}
.lp-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.lp-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: var(--lp-gray10);
  z-index: 0;
}
.lp-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.lp-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-dark);
  color: var(--lp-yellow);
  font-size: 18px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.lp-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}
.lp-step-desc {
  font-size: 12px;
  color: var(--lp-gray60);
  line-height: 1.6;
}
.lp-step-time {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-purple);
  background: var(--lp-purple-lt);
  padding: 2px 8px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
}
.lp-how-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── WHO IT'S FOR ── */
.lp-who {
  background: var(--lp-bg);
  padding: 80px 32px;
}
.lp-who-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.lp-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.lp-who-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1.5px solid var(--lp-gray10);
  transition: all 0.2s;
}
.lp-who-card:hover {
  border-color: var(--lp-yellow);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.lp-who-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.lp-who-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.lp-who-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.lp-who-list li {
  font-size: 12px;
  color: var(--lp-gray60);
  padding: 4px 0;
  line-height: 1.5;
  border-bottom: 1px solid #f0f0f0;
}
.lp-who-list li:last-child {
  border-bottom: none;
}
.lp-who-list li::before {
  content: "·";
  margin-right: 6px;
  color: var(--lp-yellow);
  font-weight: 700;
}

/* ── PREVIEW / SAMPLE OUTPUT ── */
.lp-preview {
  background: var(--lp-dark);
  padding: 80px 32px;
}
.lp-preview-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
}
.lp-preview-h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.lp-preview-h2 em {
  font-style: italic;
  color: var(--lp-yellow);
}
.lp-preview-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}
.lp-preview-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-preview-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.lp-bullet-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lp-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.lp-bullet-check svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  stroke-width: 2.5;
}
.lp-demo-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}
.lp-demo-header {
  background: var(--lp-dark);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-demo-header-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
.lp-demo-body {
  padding: 20px;
}
.lp-demo-role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.role-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-gray60);
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}
.role-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-dark);
  font-family: "Poppins", sans-serif;
}
.lp-demo-score-pill {
  background: #ffedd5;
  color: #c2410c;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
}
.lp-demo-gauge-track {
  height: 8px;
  background: var(--lp-gray10);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}
.lp-demo-gauge-fill {
  height: 100%;
  width: 62%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.lp-demo-gauge-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--lp-gray60);
  font-weight: 500;
  margin-bottom: 16px;
}
.lp-demo-mini-table {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--lp-gray10);
  margin-bottom: 14px;
}
.lp-demo-table-header {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  background: var(--lp-dark);
  padding: 8px 12px;
}
.lp-demo-th {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Poppins", sans-serif;
}
.lp-demo-table-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--lp-gray10);
}
.lp-demo-table-row:last-child {
  border-bottom: none;
}
.lp-demo-td {
  font-size: 11px;
  color: var(--lp-dark);
}
.lp-demo-td.saved {
  font-weight: 700;
  color: var(--lp-green);
}
.lp-demo-blurred {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}
.lp-demo-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 20%, transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
}

/* ── SOCIAL PROOF ── */
.lp-proof {
  background: var(--lp-bg);
  padding: 80px 32px;
}
.lp-proof-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.lp-proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--lp-gray10);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 48px;
}
.lp-proof-num-cell {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
}
.lp-proof-stat {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--lp-dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.lp-proof-stat-label {
  font-size: 12px;
  color: var(--lp-gray60);
  font-weight: 500;
  line-height: 1.4;
}
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  border: 1.5px solid var(--lp-gray10);
  transition: border-color 0.2s;
}
.lp-testimonial:hover {
  border-color: var(--lp-yellow);
}
.lp-testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.lp-testimonial-stars span {
  color: var(--lp-yellow);
  font-size: 14px;
}
.lp-testimonial-quote {
  font-size: 13px;
  color: var(--lp-dark);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.lp-testimonial-quote::before {
  content: '"';
  color: var(--lp-yellow);
  font-size: 20px;
  font-weight: 800;
}
.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lp-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-yellow);
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
}
.lp-testimonial-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-dark);
  display: block;
  font-family: "Poppins", sans-serif;
}
.lp-testimonial-role {
  font-size: 11px;
  color: var(--lp-gray60);
  display: block;
  margin-top: 2px;
}

/* ── STAKES ── */
.lp-stakes {
  background: var(--lp-dark);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.lp-stakes::after {
  content: "✓";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.lp-stakes-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.lp-stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.lp-stakes-col {
  padding: 36px;
}
.lp-stakes-col.bad {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.lp-stakes-col.good {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.lp-stakes-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.lp-stakes-col-icon {
  font-size: 20px;
}
.lp-stakes-col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Poppins", sans-serif;
}
.lp-stakes-col.bad .lp-stakes-col-title {
  color: #fca5a5;
}
.lp-stakes-col.good .lp-stakes-col-title {
  color: #86efac;
}
.lp-stakes-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-stakes-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.lp-stakes-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.bad .lp-stakes-item-dot {
  background: #ef4444;
}
.good .lp-stakes-item-dot {
  background: #22c55e;
}

/* ── FINAL CTA ── */
.lp-final-cta {
  background: var(--lp-bg);
  padding: 100px 32px;
  text-align: center;
}
.lp-final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.lp-final-cta-h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--lp-dark);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.lp-final-cta-h2 em {
  font-style: italic;
  color: var(--lp-yellow);
}
.lp-final-cta-sub {
  font-size: 1rem;
  color: var(--lp-gray60);
  line-height: 1.7;
  margin-bottom: 36px;
}
.lp-final-cta-reassurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.lp-reassurance-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--lp-gray60);
  background: #fff;
  border: 1px solid var(--lp-gray10);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── FOOTER ── */
.lp-footer {
  background: var(--lp-dark);
  padding: 48px 32px 24px;
}
.lp-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.lp-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.lp-footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 220px;
}
.lp-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}
.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-links a:hover {
  color: var(--lp-yellow);
}
.lp-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.lp-footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.lp-footer-social-btn:hover {
  background: rgba(243, 189, 0, 0.15);
  border-color: var(--lp-yellow);
  color: var(--lp-yellow);
}
.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}
.lp-footer-legal {
  display: flex;
  gap: 20px;
}
.lp-footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ── ANIMATIONS ── */
.lp-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.lp-fade-up.in-view {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
  }
  .lp-hero-visual {
    max-width: 400px;
    margin: 48px auto 0;
  }
  .lp-preview-inner {
    grid-template-columns: 1fr;
  }
  .lp-demo-card {
    max-width: 480px;
  }
  .lp-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .lp-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-proof-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .lp-nav-links {
    display: none;
  }
  .lp-hero {
    padding: 56px 20px 72px;
  }
  .lp-hero-h1 {
    font-size: 2.6rem;
  }
  .lp-problem-h2 {
    font-size: 2rem;
  }
  .lp-problem-cards {
    grid-template-columns: 1fr;
  }
  .lp-outputs-grid {
    grid-template-columns: 1fr;
  }
  .lp-h2 {
    font-size: 1.9rem;
  }
  .lp-steps {
    flex-direction: column;
    gap: 24px;
  }
  .lp-steps::before {
    display: none;
  }
  .lp-who-grid {
    grid-template-columns: 1fr;
  }
  .lp-testimonials {
    grid-template-columns: 1fr;
  }
  .lp-stakes-grid {
    grid-template-columns: 1fr;
  }
  .lp-final-cta-h2 {
    font-size: 2.2rem;
  }
  .lp-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .lp-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .lp-hero-h1 {
    font-size: 2rem;
  }
  .lp-footer-top {
    grid-template-columns: 1fr;
  }
  .lp-proof-numbers {
    grid-template-columns: 1fr 1fr;
  }
  .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
