.needs-section {
  background: #fff;
}

.content-card .text-link,
.project-card .text-link {
  color: var(--blue);
}

.needs-grid,
.testimonial-grid,
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.needs-grid article {
  min-height: 410px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--wash);
}

.needs-grid article.accent {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 25px 60px rgba(16, 87, 232, 0.22);
}

.needs-grid article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.needs-grid h3 {
  margin: 62px 0 18px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.needs-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.needs-grid .accent p {
  color: #cbdcff;
}

.needs-grid ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.needs-grid .accent ul {
  border-color: rgba(255, 255, 255, 0.23);
}

.needs-grid li {
  display: flex;
  gap: 10px;
  color: #46546d;
  font-size: 14px;
}

.needs-grid .accent li {
  color: #fff;
}

.needs-grid li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.testimonials-section,
.service-detail-section {
  background: #fff;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--wash);
}

.testimonial-stars {
  color: var(--orange);
  letter-spacing: 0.18em;
}

.testimonial-card blockquote {
  margin: 45px 0 36px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 720;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-card footer > span,
.testimonial-card footer img {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  object-fit: cover;
  font-weight: 900;
}

.testimonial-card footer div {
  display: grid;
  gap: 5px;
}

.testimonial-card footer strong {
  font-size: 14px;
}

.testimonial-card footer small {
  color: var(--muted);
  font-size: 12px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.service-detail-intro h2 {
  font-size: clamp(45px, 5vw, 72px);
}

.service-detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
}

.service-detail-points span {
  padding: 11px 14px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.service-rich-text {
  max-width: 780px;
}

.service-rich-text p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.service-rich-text .button {
  margin-top: 18px;
}

.service-scope-section {
  background: var(--wash);
}

.scope-grid {
  gap: 14px;
}

.scope-grid article {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.scope-grid span {
  color: var(--orange);
  font: 800 11px/1 monospace;
}

.scope-grid h3 {
  margin: 58px 0 12px;
  font-size: 23px;
}

.scope-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-next {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-top: 20px;
  padding: 42px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
}

.service-next h3 {
  margin: 18px 0 10px;
  font-size: 36px;
}

.service-next p {
  max-width: 650px;
  margin: 0;
  color: #aebbd1;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .needs-grid,
  .testimonial-grid,
  .scope-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .needs-grid,
  .testimonial-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    gap: 45px;
  }

  .service-next {
    display: grid;
    padding: 30px;
  }

  .service-next h3 {
    font-size: 30px;
  }
}
