/* Palette: primary #2563eb, secondary #0f172a, accent #f97316, neutral #111827, surface #f8fafc */
/* Style Direction: B - Friendly rounded */

/* Hero Section */
.hero-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background-color: #f8fafc;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.hero-content .lead {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 0;
}

/* Services Overview */
.services-overview {
  padding: 5rem 0;
  background-color: white;
}

.services-overview .section-header {
  margin-bottom: 3rem;
}

.service-overview-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.service-overview-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #2563eb;
  font-size: 1.75rem;
}

.service-overview-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.service-overview-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #64748b;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li i {
  color: #2563eb;
  font-size: 0.875rem;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.process-section .section-header {
  margin-bottom: 3rem;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #e2e8f0;
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
  margin-top: -10px;
}

.step-content {
  width: calc(50% - 40px);
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.process-step:nth-child(even) .step-content {
  margin-left: auto;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Services CTA */
.services-cta {
  padding: 5rem 0;
  background-color: white;
}

.cta-card {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 16px;
  padding: 4rem 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  text-align: center;
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-width: 180px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content .lead {
    font-size: 1.125rem;
  }
  
  .process-timeline:before {
    left: 20px;
  }
  
  .step-number {
    left: 20px;
  }
  
  .step-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .cta-card {
    padding: 3rem 1.5rem;
  }
  
  .cta-card h2 {
    font-size: 1.75rem;
  }
}
