:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1d2733;
  background: #f3f6f9;
  line-height: 1.5;
  --blue: #1769e0;
  --blue-dark: #0f55bb;
  --border: #dbe2ea;
  --muted: #667485;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

.topbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  color: #fff;
  background: #182430;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.brand strong { font-size: 20px; }
.brand span { color: #aeb9c5; }

main {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 56px 24px;
}

.page-heading { margin-bottom: 28px; }

.page-heading h1 {
  margin: 3px 0 8px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.15;
}

.page-heading p { margin: 0; color: var(--muted); }

.page-heading .eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 170px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  align-items: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: inherit;
  background: #fff;
  box-shadow: 0 4px 16px #1c355708;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: #b9cef0;
  box-shadow: 0 12px 30px #1c355718;
  transform: translateY(-2px);
  outline: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-dark);
  background: #e8f1fd;
  font-size: 23px;
  font-weight: 800;
}

.service-copy strong,
.service-copy small { display: block; }

.service-copy strong { margin: 2px 0 7px; font-size: 17px; }
.service-copy small { color: var(--muted); font-size: 13px; }

.service-card svg {
  width: 20px;
  height: 20px;
  margin-top: 14px;
  fill: none;
  stroke: #8794a2;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 800px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
}

@media (max-width: 520px) {
  .topbar { padding: 0 16px; }
  main { padding: 36px 14px; }
  .brand span { display: none; }
  .service-card { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card { transition: none; }
}
