.highlight-box {
  position: relative;
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-left: 4px solid var(--blue-basic);
  box-shadow: 0 10px 30px rgba(47, 48, 54, 0.06);
}

.highlight-box strong {
  color: var(--blue-medium);
}

/* Services */

.service-card {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-basic);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.service-card:hover {
  border-color: rgba(53, 183, 234, 0.6);
  box-shadow: 0 18px 40px rgba(47, 48, 54, 0.09);
  transform: translateY(-4px);
}

.service-marker {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 1.35rem;
  place-items: center;
  color: #fff;
  background: var(--blue-medium);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.service-card:nth-of-type(even) .service-marker {
  background: var(--blue-dark);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--blue-medium);
}

.service-card p {
  margin-bottom: 0;
  color: #55585e;
}

/* Why */

.why-section {
  color: #fff;
}

.why-section h2 {
  color: #fff;
}

.why-section .section-title p {
  color: #c8c9cd;
}

.benefit {
  display: flex;
  height: 100%;
  gap: 1rem;
  padding: 1.25rem;
  /* border: 1px solid rgba(255,255,255,.1); */
}

.benefit-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--brand-blue);
  font-weight: 700;
}

.benefit h3 {
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 1.05rem;
}

.benefit p {
  margin: 0;
  color: #c8c9cd;
  font-size: 0.92rem;
}

/* Closing */

.closing-text {
  /* background: #fff; */
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--blue-basic);
  border-bottom: 5px solid var(--blue-basic);
  text-align: center;
}
