:root {
  /* Brand */
  --accent: #f97316; /* orange */
  --cta: #3b82f6; /* blue primary button (match site primary CTA) */

  /* Type */
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.68);

  /* Surfaces */
  --bg: #ffffff;
  --panel: rgba(255, 255, 255, 0.95);
  --border: rgba(0, 0, 0, 0.08);

  /* Effects */
  --radius: 16px;
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Scroll sanity (prevents nested scroll containers / mobile 100vh jitter issues) */
html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: auto;
  overscroll-behavior-y: auto;
}

/* Container + layout helpers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding: 22px 0;
}

.pageHeader {
  padding: 34px 0 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
}

.kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.lede {
  max-width: 78ch;
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.6;
}

/* Buttons */
.btnPrimary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--cta);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.btnPrimary:hover {
  filter: brightness(0.98);
}

/* Orange inline CTA link (Services-style) */
.linkOrange,
.linkOrange:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  color: var(--accent);
}

.linkOrange::after {
  content: "→";
}

.linkOrange:hover,
.linkOrange:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
