/* What we do page */

.what-intro {
  padding-top: 72px;
  padding-bottom: 40px;
}

.what-intro-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin: 0 0 16px;
}

.what-intro-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}

/* Highlight block, similar to Nobara “Simpler experience” */
.what-highlight {
  margin-top: 24px;
}

.what-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.what-highlight h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.what-highlight p {
  margin-top: 0;
  color: var(--muted);
}

.what-bullets {
  list-style: none;
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.what-bullets li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.what-bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Service grids for this page */

.what-grid {
  padding-top: 72px;
  padding-bottom: 72px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.what-card p:last-of-type {
  margin-bottom: 0;
}

/* CTA strip */

.what-cta {
  margin-bottom: 64px;
}

.what-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.what-cta h2 {
  margin: 0 0 8px;
}

.what-cta p {
  margin: 0;
  color: var(--muted);
}

/* Responsive tweaks for What we do */

@media (max-width: 960px) {
  .what-highlight-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .what-intro {
    padding-top: 56px;
  }
}
