/* ==========================================================================
   DELIVERABLE CARDS STYLES
   ========================================================================== */

.deliverable-card {
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.9), rgba(25, 25, 35, 0.8));
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.deliverable-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.deliverable-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #00f0ff, #ff2d75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.deliverable-card h4 {
  color: #00f0ff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.deliverable-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.precision-guarantee {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 45, 117, 0.1));
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.precision-guarantee h3 {
  color: #00f0ff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.precision-guarantee h3 i {
  color: #ff2d75;
  margin-right: 0.5rem;
}

.precision-guarantee p {
  color: #cccccc;
  font-size: 1.1rem;
  margin: 0;
}
