
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.process-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #17266b, #ffa600);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #17266b, #ffa600);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.process-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.process-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
}

.workflow-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #17266b, #ffa600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workflow-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.workflow-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #17266b, #ffa600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: transform 0.3s ease;
}

.step-number:hover {
  transform: scale(1.1);
}

.workflow-step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.workflow-step p {
  color: #4a5568;
  font-size: 0.9rem;
}

.workflow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: 2rem;
  font-size: 2rem;
  color: #667eea;
  opacity: 0.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 2fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid #00095c;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #4a5568;
  font-size: 0.9rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.process-card:nth-child(1) {
  animation-delay: 0.1s;
}
.process-card:nth-child(2) {
  animation-delay: 0.2s;
}
.process-card:nth-child(3) {
  animation-delay: 0.3s;
}
.process-card:nth-child(4) {
  animation-delay: 0.4s;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .hero {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .workflow-steps {
    flex-direction: column;
  }

  .workflow-step:not(:last-child)::after {
    content: "↓";
    right: auto;
    top: auto;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .workflow-section,
  .process-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .workflow-title {
    font-size: 2rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}
