/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #47a0ff 0%, #47a0ff 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  max-width: 100%;
  margin-top: 3rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}
.features-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.2rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .features-section {
    padding: 2rem 1rem;
  }
  .feature-card {
    padding: 1.25rem;
  }
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, #47a0ff 0%, #47a0ff 100%);
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 2rem;
}

.process-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}


/* Tab System */
.tab-container {
  margin-top: 2rem;
}

.tab-buttons {
  display: flex;
  background: rgba(59, 57, 57, 0.824);
  border-radius: 10px;
  padding: 0.4rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-button {
  flex: 1;
  padding: 0.8rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.tab-button.active {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Process Steps */
.process-steps {
  background: rgba(48, 47, 47, 0.841);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step {
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 1rem;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #2ef50b;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  background: linear-gradient(135deg, #4fa805, #4fa805);
  color: white;
  width: 50px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-text {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-section,
  .process-section {
    padding: 2rem 1rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .process-title {
    font-size: 1.6rem;
  }

  .tab-buttons {
    flex-direction: column;
    gap: 0.3rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    padding: 0.8rem;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .process-title {
    font-size: 1.4rem;
  }

  .process-subtitle {
    font-size: 0.9rem;
  }

  .features-section,
  .process-section {
    padding: 1.5rem 0.8rem;
  }
}
