.wpdr__hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  padding: 2rem 0 2rem;
  text-align: center;
  color: var(--brand-grey-900);
}

.wpdr__hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.wpdr__hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 43.75rem;
  margin: 0 auto;
}

.wpdr__container {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.wpdr__form-card {
  background: var(--brand-white);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow-lg);
  padding: 2.5rem;
}

.wpdr__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-grey-900);
  margin: 2rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.1875rem solid var(--brand-primary);
}

.wpdr__section-title:first-of-type {
  margin-top: 0;
}

.wpdr__form-card .form-label {
  font-weight: 600;
  color: var(--brand-grey-800);
  margin-bottom: 0.5rem;
}

.wpdr__form-card .form-control,
.wpdr__form-card .form-select {
  border-radius: var(--brand-radius-sm);
  border: 0.125rem solid var(--brand-grey-300);
  padding: 0.75rem;
  transition: var(--brand-transition);
}

.wpdr__form-card .form-control:focus,
.wpdr__form-card .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.1875rem rgba(255, 211, 59, 0.1);
}

.wpdr__type-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.wpdr__type-card {
  background: var(--brand-grey-50);
  border: 0.1875rem solid var(--brand-grey-300);
  border-radius: var(--brand-radius-md);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--brand-transition);
  position: relative;
}

.wpdr__type-card:hover {
  border-color: var(--brand-primary);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow-md);
}

.wpdr__type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.wpdr__type-card input[type="radio"]:checked + .wpdr__type-content {
  border-left: 0.25rem solid var(--brand-primary);
  padding-left: 1rem;
}

.wpdr__type-card input[type="radio"]:checked ~ .wpdr__type-icon {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
}

.wpdr__type-icon {
  width: 3.75rem;
  height: 3.75rem;
  background: var(--brand-grey-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--brand-transition);
}

.wpdr__type-icon i {
  font-size: 1.75rem;
  color: var(--brand-white);
}

.wpdr__type-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-grey-900);
  margin-bottom: 0.5rem;
}

.wpdr__type-desc {
  font-size: 0.9375rem;
  color: var(--brand-grey-600);
  line-height: 1.5;
}

.wpdr__submit-btn {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--brand-grey-900);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--brand-radius-md);
  cursor: pointer;
  transition: var(--brand-transition);
  width: 100%;
  margin-top: 2rem;
}

.wpdr__submit-btn:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.25rem rgba(255, 211, 59, 0.4);
}

.wpdr__field-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.wpdr__required-field::after {
  content: " *";
  color: #dc3545;
}

@media (max-width: 768px) {
  .wpdr__hero h1 {
    font-size: 2rem;
  }

  .wpdr__form-card {
    padding: 1.5rem;
  }

  .wpdr__type-options {
    grid-template-columns: 1fr;
  }

  .wpdr__field-group {
    grid-template-columns: 1fr;
  }
}
