.services-main {
  padding-top: 6rem;
}

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

.services-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #365314 100%);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.services-hero-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.services-badge {
  display: inline-block;
  background: rgba(132, 204, 22, 0.15);
  color: #a3e635;
  border: 1px solid rgba(163, 230, 53, 0.3);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.services-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.services-hero-subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto;
}

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

.services-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-label {
  display: inline-block;
  background: #f0fdf4;
  color: #65a30d;
  border: 1px solid #d9f99d;
  border-radius: 9999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-desc {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
}

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

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

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
  border-color: #bef264;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: #f0fdf4;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #65a30d;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.service-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.875rem;
  color: #475569;
  padding-left: 1.25rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  background: #84cc16;
  border-radius: 50%;
}

.services-process {
  background: #f8fafc;
  padding: 5rem 1.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.process-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: #84cc16;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.process-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.process-step-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
}

.services-testimonials {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 80%, #1a2e05 100%);
  padding: 5rem 1.5rem;
}

.services-testimonials .services-intro .services-label {
  background: rgba(132, 204, 22, 0.15);
  color: #a3e635;
  border-color: rgba(163, 230, 53, 0.3);
}

.services-testimonials .services-intro .services-title {
  color: #ffffff;
}

.services-testimonials .services-intro .services-desc {
  color: #94a3b8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  background: rgba(132, 204, 22, 0.07);
  border-color: rgba(132, 204, 22, 0.35);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
}

.testimonial-stars span {
  color: #84cc16;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #84cc16, #4d7c0f);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f1f5f9;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: #64748b;
}

.services-projects {
  padding: 5rem 1.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.project-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.project-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
  border-color: #bef264;
}

.project-image {
  width: 100%;
  height: 12rem;
  background: #f1f5f9;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
}

.project-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.project-description {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.services-cta {
  padding: 5rem 1.5rem 6rem;
}

.services-cta-box {
  max-width: 52rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 2rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.services-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.services-cta-text {
  font-size: 1.0625rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

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

.services-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #84cc16;
  color: #0f172a;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.services-cta-btn-primary:hover {
  background: #a3e635;
  transform: translateY(-2px);
}

.services-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #cbd5e1;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(203, 213, 225, 0.25);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.services-cta-btn-secondary:hover {
  border-color: #84cc16;
  color: #ffffff;
  transform: translateY(-2px);
}