.orientation-hero {
  padding: 78px 0;
  color: #fff;
  background:
    radial-gradient(circle at 84% 12%, rgba(167, 139, 250, 0.25), transparent 25rem),
    linear-gradient(135deg, #0f172a, #1e3a8a 58%, #4c1d95);
}

.orientation-hero-layout,
.orientation-quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  gap: 52px;
  align-items: start;
}

.orientation-breadcrumb,
.orientation-breadcrumb a {
  color: rgba(255, 255, 255, 0.76);
}

.orientation-hero h1 {
  max-width: 850px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.orientation-hero h1 + p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.orientation-summary {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.orientation-summary > span {
  display: inline-flex;
  padding: 7px 11px;
  color: #312e81;
  background: #ddd6fe;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.orientation-summary ul {
  display: grid;
  gap: 13px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.orientation-summary li {
  position: relative;
  padding-left: 26px;
}

.orientation-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #86efac;
  font-weight: 900;
}

.orientation-panel {
  max-width: 980px;
}

.orientation-goal-form {
  margin-top: 32px;
}

.orientation-goal-form fieldset,
.orientation-question-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.orientation-goals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.orientation-goals label,
.orientation-options label {
  display: block;
  cursor: pointer;
}

.orientation-goals input,
.orientation-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.orientation-goals label > span {
  display: grid;
  gap: 7px;
  min-height: 120px;
  padding: 22px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.orientation-goals label:hover > span {
  border-color: #93c5fd;
  transform: translateY(-2px);
}

.orientation-goals input:checked + span {
  background: #eff6ff;
  border-color: #2563eb;
}

.orientation-goals input:focus-visible + span,
.orientation-options input:focus-visible + span {
  outline: 3px solid rgba(37, 99, 235, 0.3);
  outline-offset: 3px;
}

.orientation-goals strong {
  color: #0f172a;
  font-size: 1.08rem;
}

.orientation-goals small {
  color: #64748b;
  line-height: 1.5;
}

.orientation-error {
  margin: 0 0 18px;
  padding: 13px 15px;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
}

.orientation-quiz-layout {
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
}

.orientation-progress-panel {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.orientation-progress-panel > strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 2rem;
}

.orientation-progress-panel > p:last-child {
  margin-top: 16px;
  color: #64748b;
  font-size: 0.86rem;
}

.orientation-progress-track {
  height: 11px;
  margin-top: 16px;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: 999px;
}

.orientation-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.orientation-question-card {
  padding: clamp(24px, 5vw, 42px);
  background: #fff;
  border: 1px solid #dbe4ef;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
}

.orientation-domain {
  display: inline-flex;
  padding: 6px 10px;
  color: #1e40af;
  background: #dbeafe;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.orientation-question-card h2 {
  margin-top: 18px;
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.25;
}

.orientation-options {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}

.orientation-options label > span {
  display: block;
  padding: 15px 17px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 11px;
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s;
}

.orientation-options label:hover > span {
  border-color: #93c5fd;
}

.orientation-options input:checked + span {
  color: #1e3a8a;
  background: #eff6ff;
  border-color: #2563eb;
}

.orientation-navigation,
.orientation-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.orientation-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.orientation-profile-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(167, 139, 250, 0.32), transparent 18rem),
    linear-gradient(135deg, #172554, #312e81 62%, #581c87);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(30, 41, 59, 0.2);
}

.orientation-profile-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #312e81;
  background: #e0e7ff;
  border-radius: 18px;
  font-size: 1.35rem;
  font-weight: 950;
}

.orientation-profile-card span {
  color: #c4b5fd;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orientation-profile-card h3 {
  margin-top: 5px;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
}

.orientation-profile-card p {
  max-width: 760px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.orientation-roadmap-section {
  margin-top: 42px;
}

.orientation-roadmap-heading h3,
.orientation-domain-heading h3 {
  margin-top: 6px;
  color: #0f172a;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.orientation-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.orientation-roadmap li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid #dbe4ef;
  border-top: 5px solid #2563eb;
  border-radius: 15px;
}

.orientation-roadmap li:nth-child(2) {
  border-top-color: #7c3aed;
}

.orientation-roadmap li:nth-child(3) {
  border-top-color: #16a34a;
}

.orientation-roadmap-step {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orientation-roadmap h4 {
  margin-top: 10px;
  color: #0f172a;
  font-size: 1.15rem;
}

.orientation-roadmap p {
  margin: 10px 0 20px;
  color: #64748b;
  line-height: 1.55;
}

.orientation-roadmap a {
  margin-top: auto;
  color: #1d4ed8;
  font-weight: 850;
}

.orientation-domain-heading {
  margin-top: 48px;
}

.orientation-result-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid #dbe4ef;
  border-top: 5px solid #64748b;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.orientation-result-card.is-primary {
  border-color: #93c5fd;
  border-top-color: #2563eb;
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.15);
}

.orientation-result-card > span {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orientation-result-card h3 {
  margin-top: 8px;
  color: #0f172a;
  font-size: 1.35rem;
}

.orientation-level {
  margin-top: 18px;
  color: #475569;
}

.orientation-level strong {
  display: block;
  color: #0f172a;
  font-size: 1.7rem;
}

.orientation-result-card > p {
  margin: 18px 0;
  color: #64748b;
  line-height: 1.6;
}

.orientation-result-card .btn {
  width: 100%;
  margin-top: auto;
}

.orientation-disclaimer {
  margin-top: 24px;
  color: #64748b;
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .orientation-hero-layout,
  .orientation-quiz-layout,
  .orientation-result-grid,
  .orientation-roadmap {
    grid-template-columns: 1fr;
  }

  .orientation-progress-panel {
    position: static;
  }

  .orientation-roadmap li {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .orientation-hero {
    padding: 54px 0;
  }

  .orientation-goals {
    grid-template-columns: 1fr;
  }

  .orientation-profile-card {
    grid-template-columns: 1fr;
  }

  .orientation-goals label > span {
    min-height: auto;
  }

  .orientation-navigation .btn,
  .orientation-result-actions .btn {
    width: 100%;
  }
}
