/* Services Hero Section Styles */
.services-hero {
  background: #ffffff;
  padding: 0;
}

/* Hero Header */
.services-hero-header {
  background: #ffffff;
  padding: var(--space-16) 0 var(--space-12) 0;
  text-align: center;
}

.services-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.services-hero-subtitle {
  font-size: 1.125rem;
  color: var(--dark-600);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}


/* Roles Section */
.roles-section {
  padding: var(--space-16) 0;
  background: var(--white);
}

.roles-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-12);
  color: var(--dark-900);
  font-weight: 600;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.role-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--dark-200);
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--dark-300);
}

.role-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: all var(--transition-slow);
  flex-shrink: 0;
}

.role-card:hover .role-icon-wrapper {
  transform: scale(1.1);
  background: var(--dark-800);
}

.role-card h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
  color: var(--dark-900);
  font-weight: 600;
}

.role-card p {
  font-size: 0.95rem;
  color: var(--dark-600);
  line-height: 1.5;
  margin: 0;
}

/* Services Grid Section */
.services-grid-section {
  padding: var(--space-16) 0;
  background: var(--white);
}

.services-grid-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-12);
  color: var(--dark-900);
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--dark-200);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-slow);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--dark-300);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition-slow);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
  background: var(--dark-800);
}

.service-content {
  flex: 1;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 var(--space-2) 0;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--dark-600);
  line-height: 1.5;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: var(--space-16) 0;
}



/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-hero-title {
    font-size: 2rem;
  }
  
  .services-hero-subtitle {
    font-size: 1rem;
  }
  
  .roles-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 500px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .services-hero-header {
    padding: var(--space-12) 0 var(--space-8) 0;
  }
  
  .role-card {
    padding: var(--space-6);
  }
  
  .service-card {
    padding: var(--space-6);
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .services-hero-title {
    font-size: 1.75rem;
  }
  
  .roles-title,
  .services-grid-title {
    font-size: 1.25rem;
  }
  
  .roles-section,
  .services-grid-section,
  .values-section {
    padding: var(--space-12) 0;
  }
}