.app-mark.coral {
  background: var(--accent);
}

.service-panel {
  padding: 24px;
  border: 1px solid rgba(13, 79, 61, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.service-panel ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(246, 248, 244, 0.74);
}

.service-panel b,
.service-panel span {
  display: block;
}

.service-panel b {
  margin-bottom: 6px;
  font-size: 17px;
}

.service-panel span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.apps-hero {
  grid-template-columns: minmax(0, 760px);
  min-height: 390px;
}

.case-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  min-height: 470px;
}

.case-panel {
  padding: 24px;
  border: 1px solid rgba(13, 79, 61, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.case-panel h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.case-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.case-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-preview div {
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  color: #fff;
  background: var(--brand-dark);
}

.case-preview div:nth-child(2) {
  background: var(--accent);
}

.case-preview div:nth-child(3) {
  background: var(--blue);
}

.case-preview span,
.case-preview b {
  display: block;
}

.case-preview span {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-preview b {
  font-size: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .service-panel {
    max-width: 100%;
  }

  .case-hero {
    grid-template-columns: 1fr;
  }

  .case-panel {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .service-panel {
    padding: 14px;
  }

  .service-panel li {
    padding: 14px;
  }

  .service-panel b {
    font-size: 16px;
  }

  .service-panel span {
    font-size: 13.5px;
  }

  .case-panel {
    padding: 16px;
  }

  .case-panel h2 {
    font-size: 22px;
  }

  .case-preview {
    grid-template-columns: 1fr;
  }

  .case-preview div {
    min-height: 112px;
  }
}
