.service-hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  padding: 5rem 0;
}

.service-hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-hero-content h1 {
  color: white;
  margin-bottom: 1rem;
}

.service-hero-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.service-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-hero-features {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.service-hero-features h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.05rem;
}

.feature-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.service-overview {
  padding: 5rem 0;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.overview-text h2 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.overview-text p {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.overview-highlights {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary-blue);
}

.overview-highlights h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.highlight-content p {
  color: var(--text-gray);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.who-its-for {
  background: var(--bg-light);
  padding: 5rem 0;
}

.client-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.client-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.client-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.client-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.client-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.client-card p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.7;
}

.benefits-section {
  padding: 5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 0.75rem;
  border-top: 4px solid var(--primary-blue);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.7;
}

.process-section {
  background: var(--bg-gray);
  padding: 5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step-counter;
}

.process-step {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.75rem;
  position: relative;
  counter-increment: step-counter;
}

.process-step::before {
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  color: var(--primary-blue);
  margin: 1.5rem 0 1rem;
  text-align: center;
  font-size: 1.125rem;
}

.process-step p {
  color: var(--text-gray);
  margin: 0;
  text-align: center;
  line-height: 1.6;
  font-size: 0.95rem;
}

.outcome-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.outcome-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.outcome-content h2 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.outcome-content p {
  color: var(--text-gray);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.outcome-guarantee {
  background: white;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--accent-gold);
  margin-top: 2rem;
}

.outcome-guarantee h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.outcome-guarantee p {
  color: var(--text-gray);
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.7;
}

.related-services {
  background: var(--bg-light);
  padding: 4rem 0;
}

.related-services h3 {
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.related-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
  border: 2px solid var(--border-gray);
}

.related-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.related-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.related-card h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.related-card p {
  color: var(--text-gray);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.service-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.service-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

@media (max-width: 968px) {
  .service-hero .container {
    grid-template-columns: 1fr;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-hero-cta,
  .service-cta-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 3rem 0;
  }

  .benefits-grid,
  .client-types,
  .process-steps,
  .related-grid {
    grid-template-columns: 1fr;
  }
}
