
.wsc-form-wrap {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  text-align: center;
}

.wsc-form-wrap h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.wsc-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.wsc-input {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.wsc-input input {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}
.wsc-input input:focus {
  border-color: #0073aa;
  box-shadow: 0 0 10px rgba(0,115,170,0.2);
}

.wsc-input i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.wsc-btn-main {
  background: linear-gradient(135deg, #0073aa, #00b894);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 25px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wsc-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.wsc-report {
  margin-top: 25px;
  padding: 20px;
  border-radius: 14px;
  background: #f9fafc;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.wsc-summary li {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wsc-summary li strong {
  color: #333;
}

.wsc-good {
  padding: 12px;
  background: #e6ffed;
  color: #155724;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 15px;
}

.wsc-suggestions h4 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #0073aa;
}
.wsc-suggestions ol {
  padding-left: 20px;
}
.wsc-suggestions li {
  background: #fff;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.wsc-cta-wrap {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 2px solid #eee;
  margin-top: 20px;
}

.wsc-cta {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #0073aa, #005f8d);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}
.wsc-download {
  flex: 1;
  background: #6c757d;
  color: #fff;
}
