/* Services section v2 (cache-busted rollout) */
#commercial-service-section.services-v2-section {
  padding: 0 0 60px;
  background: #f5f6f3;
}

#commercial-service-section.services-v2-section .services-v2-photos-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#commercial-service-section.services-v2-section .services-v2-photo-block {
  height: 180px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

#commercial-service-section.services-v2-section .services-v2-photo-block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#commercial-service-section.services-v2-section .services-v2-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#commercial-service-section.services-v2-section .services-v2-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 34px 34px 38px;
  display: flex;
  flex-direction: column;
}

#commercial-service-section.services-v2-section .services-v2-card-title {
  font-family: Lato, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.28;
  text-align: center;
  letter-spacing: -0.28px;
  margin: 0 0 14px;
}

#commercial-service-section.services-v2-section .services-v2-card-divider {
  width: 32px;
  height: 3px;
  background: #5ba847;
  margin: 0 auto 20px;
  border-radius: 2px;
}

#commercial-service-section.services-v2-section .services-v2-card-body {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 22px;
  flex: 1;
}

#commercial-service-section.services-v2-section .services-v2-card-body strong {
  color: #1a1a1a;
}

#commercial-service-section.services-v2-section .services-v2-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: #5ba847;
  text-decoration: none;
  margin-bottom: 8px;
}

#commercial-service-section.services-v2-section .services-v2-primary-link svg {
  width: 14px;
  height: 14px;
  stroke: #5ba847;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

#commercial-service-section.services-v2-section .services-v2-primary-link:hover {
  color: #3d3b45;
}

#commercial-service-section.services-v2-section .services-v2-secondary-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#commercial-service-section.services-v2-section .services-v2-secondary-list li {
  font-family: Lato, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #9a9a9a;
  position: relative;
  padding-left: 14px;
}

#commercial-service-section.services-v2-section .services-v2-secondary-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cfcfcf;
}

#commercial-service-section.services-v2-section .services-v2-tagline {
  background: #fff;
  border: 1px solid #ebebeb;
  border-top: none;
  border-radius: 0 0 10px 10px;
  margin-top: 16px;
  padding: 26px 32px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#commercial-service-section.services-v2-section .services-v2-tagline:before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(91, 168, 71, 0), rgba(91, 168, 71, 0.95), rgba(91, 168, 71, 0));
  opacity: 0.7;
}

#commercial-service-section.services-v2-section .services-v2-tagline__claims {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

#commercial-service-section.services-v2-section .services-v2-tagline__claim {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(91, 168, 71, 0.18);
  background: #f7fbf5;
  color: #456d41;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

#commercial-service-section.services-v2-section .services-v2-tagline__claim--featured {
  position: relative;
  border-color: rgba(91, 168, 71, 0.42);
  background: linear-gradient(135deg, rgba(91, 168, 71, 0.14), rgba(91, 168, 71, 0.04));
  color: #2f5f28;
  animation: services-v2-guarantee-pulse 3.6s ease-in-out infinite;
  overflow: hidden;
  will-change: transform, filter;
}

#commercial-service-section.services-v2-section .services-v2-tagline__claim--featured:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.65), rgba(255,255,255,0));
  transform: translateX(-160%) skewX(-24deg);
  animation: services-v2-guarantee-sheen 4.8s ease-in-out infinite;
  will-change: transform, opacity;
}

#commercial-service-section.services-v2-section .services-v2-tagline p {
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0;
}

#commercial-service-section.services-v2-section .services-v2-tagline p em {
  font-style: normal;
  color: #5ba847;
}

@keyframes services-v2-guarantee-pulse {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 0 rgba(91, 168, 71, 0));
  }
  50% {
    transform: translateY(-1px) scale(1.01);
    filter: drop-shadow(0 10px 16px rgba(91, 168, 71, 0.22));
  }
}

@keyframes services-v2-guarantee-sheen {
  0%, 55% {
    transform: translateX(-160%) skewX(-24deg);
    opacity: 0;
  }
  62% {
    opacity: 1;
  }
  82%, 100% {
    transform: translateX(420%) skewX(-24deg);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  #commercial-service-section.services-v2-section .services-v2-photos-strip {
    grid-template-columns: 1fr;
  }

  #commercial-service-section.services-v2-section .services-v2-cards-row {
    grid-template-columns: 1fr;
  }

  #commercial-service-section.services-v2-section .services-v2-photo-block {
    height: 150px;
    border-radius: 10px 10px 0 0;
  }

  #commercial-service-section.services-v2-section .services-v2-card {
    padding: 30px 24px 32px;
  }

  #commercial-service-section.services-v2-section .services-v2-tagline {
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  #commercial-service-section.services-v2-section {
    padding-bottom: 30px;
  }

  #commercial-service-section.services-v2-section .services-v2-card-title {
    font-size: 24px;
    line-height: 1.3;
  }

  #commercial-service-section.services-v2-section .services-v2-card-body {
    font-size: 16px;
    line-height: 1.7;
  }

  #commercial-service-section.services-v2-section .services-v2-primary-link,
  #commercial-service-section.services-v2-section .services-v2-secondary-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  #commercial-service-section.services-v2-section .services-v2-tagline p {
    font-size: 18px;
    line-height: 1.5;
  }

  #commercial-service-section.services-v2-section .services-v2-tagline__claims {
    gap: 8px;
    margin-bottom: 14px;
  }

  #commercial-service-section.services-v2-section .services-v2-tagline__claim {
    min-height: 32px;
    font-size: 11px;
    letter-spacing: 0.03em;
    padding: 0 12px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  #commercial-service-section.services-v2-section .services-v2-tagline__claim--featured,
  #commercial-service-section.services-v2-section .services-v2-tagline__claim--featured:after {
    animation: none;
  }
}
