:root {
  --edf-blue: #10367A;
  --edf-orange: #FE5716;
  --edf-gray: #D3D3D3;
  --bg-white: #FFFFFF;
  --card-bg: #F7F9FC;
  --shadow: 0 6px 16px rgba(16,54,122,0.12);
  --radius: 14px;
  --text-dark: #000000;
}

.wrapper {
  width: 100%;
  max-width: 1100px;       
  min-width: 900px;        
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Inter", sans-serif; 
  color: var(--text-dark);
}

.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.header-title {
  font-weight: 800;
  font-size: 26px;
  color: var(--edf-blue);
}
.header-badge {
  font-size: 14px;
  color: var(--edf-blue);
  opacity: 0.8;
}
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
}

.sidebar {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.stepper {
  list-style: none;
  position: relative;
}
.stepper::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--edf-gray);
}
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
}
.step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--edf-gray);
  background: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step.active .step-dot {
  background: var(--edf-blue);
  border-color: var(--edf-blue);
  color: #fff;
}
.step.done .step-dot {
  background: var(--edf-orange);
  border-color: var(--edf-orange);
  color: #fff;
}
.step-label {
  font-weight: 600;
  color: var(--edf-blue);
}

.content {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
.progressbar {
  height: 6px;
  background: var(--edf-gray);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}
.progressbar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--edf-blue), #1a4ca4);
  transition: width .35s;
}
.question {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 16px;
}
.card {
  background: var(--card-bg);
  border: 2px solid var(--edf-gray);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: .25s;
  position: relative;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card.selected {
  border-color: var(--edf-orange);
  background: #fff;
  box-shadow: 0 6px 16px rgba(254,87,22,0.15);
}
.card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 28px;
}
.card-title {
  margin-top: 50px;
  font-weight: 700;
  color: var(--text-dark);
}

.field { margin-top: 12px; max-width: 400px; }
input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 2px solid var(--edf-gray);
  font-size: 16px;
}
input:focus {
  border-color: var(--edf-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(16,54,122,.12);
}

.controls {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}
.btn {
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: var(--edf-blue);
  color: #fff;
  transition: .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  border: 2px solid var(--edf-gray);
  color: var(--edf-blue);
}

.thanks {
  text-align: center;
  padding: 40px;
}
.thanks-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--edf-blue);
}