.services-page {
  padding-top: 100px;
  min-height: 100vh;
}

.services-hero {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.services-main { padding: 5rem 0; }

.service-detail { margin-bottom: 5rem; padding: 3rem 0; }
.service-detail:nth-child(even) { background: var(--light-color); }

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
}

.service-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.service-text .service-category {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features { list-style: none; margin-bottom: 2rem; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.service-features i { color: var(--primary-color); font-size: 1.2rem; width: 20px; }

.service-visual { position: relative; }

.service-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}
.service-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-heavy);
}

.service-stats {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  min-width: 120px;
}
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.85rem; color: var(--text-light); }

.technologies { padding: 4rem 0; background: var(--dark-color); color: var(--white); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.tech-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: var(--transition);
}
.tech-item:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-5px); }
.tech-icon { font-size: 3rem; margin-bottom: 1rem; color: var(--primary-color); }
.tech-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.tech-item p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }

.process-section { padding: 5rem 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.process-step { text-align: center; position: relative; }
.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -10%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}
.process-step:last-child::after { display: none; }
.step-number {
  width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 700; color: var(--white); margin: 0 auto 1.5rem; box-shadow: var(--shadow-light);
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text-dark); }
.process-step p { color: var(--text-light); line-height: 1.6; }

.pricing-section { padding: 5rem 0; background: var(--light-color); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured { transform: scale(1.05); border: 2px solid var(--primary-color); }
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--primary-color); color: var(--white);
  padding: 5px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-heavy); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.pricing-title { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-dark); }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.5rem; }
.pricing-period { color: var(--text-light); margin-bottom: 2rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-features li {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: var(--text-dark);
}
.pricing-features i { color: #10b981; font-size: 1.1rem; width: 16px; }

@media (max-width: 768px) {
  .services-hero h1 { font-size: 2rem; }
  .service-content { grid-template-columns: 1fr; text-align: center; }
  .service-text h2 { font-size: 2rem; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .pricing-card.featured { transform: none; }
}
