:root {
  --primary-color: #341d00;
  --action-yellow: #F59E0B;
  --professional-blue: #366285;
  --surface-low: #ecf4ff;
  --on-surface: #001d31;
  --on-surface-variant: #42474e;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--on-surface);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 900;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #f1f5f9;
}

.btn-action-yellow {
  background-color: var(--action-yellow);
  color: white;
  font-weight: 700;
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  transition: all 0.2s;
}

.btn-action-yellow:hover {
  filter: brightness(1.1);
  color: white;
  transform: scale(1.02);
}

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
}

.text-action-yellow {
  color: var(--action-yellow) !important;
}

.bg-surface-low {
  background-color: var(--surface-low);
}

.journey-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(to right, var(--action-yellow) 50%, transparent 50%);
  background-size: 20px 100%;
  background-repeat: repeat-x;
  opacity: 0.2;
  z-index: 0;
}

.step-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border: 1px solid #f1f5f9;
  position: relative;
  z-index: 10;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 158, 11, 0.2);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background: var(--action-yellow);
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.assessment-card {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.option-btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid #f1f5f9;
  background: white;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-btn:hover, .option-btn.active {
  border-color: var(--action-yellow);
  background: rgba(245, 158, 11, 0.05);
  color: var(--action-yellow);
}

.footer {
  background-color: #f8fafc;
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}
