.progress-ring__circle {
  transition: stroke-dashoffset 0.8s ease-out, stroke 0.5s ease-in-out;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-segment {
  transition: stroke-dashoffset 0.8s ease-out 0.2s, opacity 0.5s ease-in-out;
}

.segment-blue { stroke: #1f9fdf; }
.segment-green { stroke: #4caf50; }
.segment-orange { stroke: #ff9800; }

.animate-pulse-custom {
  animation: pulse-custom 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-custom {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.03);
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background-color: #1a262d;
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid #253b46;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  color: #64748b;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #fff;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  background-color: #121c21;
  border: 1px solid #253b46;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #1f9fdf;
}

.form-submit {
  width: 100%;
  padding: 0.75rem;
  background-color: #1f9fdf;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-submit:hover {
  background-color: #1c8ec8;
}


#name, #company, #email, #industry {
  color: #111418;
} 