/* SERVICES 5 - MINIMAL LIST */
.services-5 {
  padding: 100px 5%;
  background: var(--white);
}
.services-5 .container {
  max-width: 1000px;
  margin: 0 auto;
}
.services-5 .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-5 .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.services-5 h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
}
.services-5 .header p {
  max-width: 400px;
  color: var(--gray-dark);
  line-height: 1.7;
}
.services-5 .service-list {
  border-top: 2px solid var(--gray-light);
}
.services-5 .service-item {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  gap: 30px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.services-5 .service-item:hover {
  padding-left: 20px;
  background: var(--white);
}
.services-5 .service-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gray-light);
  transition: color 0.3s ease;
}
.services-5 .service-item:hover .service-number {
  color: var(--secondary);
}
.services-5 .service-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gray-dark);
  margin-bottom: 8px;
}
.services-5 .service-info p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.6;
}
.services-5 .service-arrow {
  width: 50px;
  height: 50px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.services-5 .service-item:hover .service-arrow {
  background: var(--secondary);
}
.services-5 .service-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--gray-light);
  transition: all 0.3s ease;
}
.services-5 .service-item:hover .service-arrow svg {
  color: var(--white);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .services-5 .service-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .services-5 .service-arrow {
    display: none;
  }
  .services-5 .header {
    flex-direction: column;
    align-items: flex-start;
  }
}
