/* Services Section Styles */
.services-section {
  padding: 8rem 0;
  position: relative;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-header {
  margin-bottom: 5rem;
}

.services-section .section-badge {
  color: #4f46e5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.services-section .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0f172a;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .services-section .section-title {
    font-size: 3.5rem;
  }
}

.italic-text {
  color: #cbd5e1;
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-0.25rem);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #4f46e5;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.service-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-benefit {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 250, 252, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.875rem;
}

.check-icon {
  width: 1rem;
  height: 1rem;
}

/* Dark Mode Overrides */
body.dark-mode .services-section .section-title {
  color: var(--dark-heading);
}
body.dark-mode .italic-text {
  color: rgba(255, 255, 255, 0.2);
}
body.dark-mode .service-card {
  background: var(--dark-bg-secondary);
  border-color: var(--dark-border);
}
body.dark-mode .service-title {
  color: var(--dark-heading);
}
body.dark-mode .service-description {
  color: var(--dark-desc);
}
body.dark-mode .service-benefit {
  border-color: var(--dark-border);
}

