.services-hero {
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
  padding: 90px 0 80px;
}

.services-kicker {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.services-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 1100px;
}

.services-lead {
  max-width: 900px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.services-grid-section {
  padding: 90px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 26px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  border-color: #d9e8dd;
}
.service-card:hover .service-icon {
  background: #e6f5eb;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #eef8f1;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.service-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 10px;
}

.services-highlight {
  padding: 90px 0;
  background: var(--bg-light);
}

.services-highlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.services-highlight-text h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 18px;
}

.services-highlight-text p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.services-highlight-box {
  display: grid;
  gap: 18px;
}

.services-highlight-item {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  border-color: #d9e8dd;
}
.services-highlight-item span {
  display: block;
  color: var(--green);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.services-highlight-item p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .services-grid,
  .services-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .service-card h3 {
    font-size: 22px;
  }

  .service-card p,
  .service-card li,
  .services-highlight-text p,
  .services-highlight-item p {
    font-size: 16px;
  }

  .services-highlight-item span {
    font-size: 28px;
  }
}
.services-grid-section {
  padding: 90px 0 90px;
  background: var(--white);
}

.services-link-row {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}