/* ───────────────────────────────────────────────
   Inspyred Technologies — service detail pages
   builds on styles.css (shares the same tokens)
   ─────────────────────────────────────────────── */

/* breadcrumb */
.sp-crumbs {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
}
.sp-crumbs a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}
.sp-crumbs a:hover { color: var(--brand-deep); border-bottom-color: var(--brand); }
.sp-crumbs .sep { color: var(--rule); }
.sp-crumbs .here { color: var(--ink-soft); }

/* ───── hero ───── */
.sp-hero {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 28px 28px;
}
.sp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.sp-hero-icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--brand);
  margin: 0 0 22px;
}
.sp-h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.0;
  letter-spacing: -.022em;
  margin: 0 0 20px;
  color: var(--ink);
}
.sp-lede {
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 30px;
}
.sp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* quick-facts card */
.sp-quickcard {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-soft);
}
.sp-quickcard h2 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 18px;
}
.sp-facts { margin: 0; display: grid; gap: 14px; }
.sp-facts > div {
  display: grid;
  gap: 3px;
  border-top: 1px dashed var(--rule);
  padding-top: 14px;
}
.sp-facts > div:first-child { border-top: 0; padding-top: 0; }
.sp-facts dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.sp-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
}

@media (max-width: 920px) {
  .sp-hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ───── content sections ───── */
.sp-section {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 28px;
}
.sp-section-tint {
  position: relative;
  z-index: 2;
  padding: 72px 28px;
  background: linear-gradient(180deg, transparent, rgba(10,37,64,.025) 30%, rgba(10,37,64,.025) 70%, transparent);
}
.sp-section-tint > * {
  max-width: var(--max);
  margin-inline: auto;
}

.sp-head {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 62ch;
}
.sp-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
}
.sp-h2 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -.018em;
  margin: 0;
}
.sp-subhead {
  margin: 44px 0 0;
}

.sp-prose p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 0 16px;
}
.sp-prose em {
  color: var(--brand-deep);
  font-style: italic;
  font-family: var(--display);
  font-weight: 500;
}

/* feature grid */
.sp-features {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sp-features li {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.sp-features li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(10,37,64,.18);
}
.sp-f-key {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brand);
  display: block;
  margin: 0 0 10px;
}
.sp-features h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.sp-features p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 860px) { .sp-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .sp-features { grid-template-columns: 1fr; } }

/* checklist */
.sp-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 36px;
}
.sp-checks li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.sp-checks li::before {
  content: "›";
  position: absolute;
  left: 6px; top: 0;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--brand);
}
@media (max-width: 640px) { .sp-checks { grid-template-columns: 1fr; } }

/* faq */
.sp-faq {
  display: grid;
  gap: 12px;
  max-width: 82ch;
}
.sp-faq details {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 0 20px;
  transition: border-color .25s ease;
}
.sp-faq details[open] { border-color: rgba(10,37,64,.18); }
.sp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  color: var(--brand);
  transition: transform .25s ease;
}
.sp-faq details[open] summary::after { transform: rotate(45deg); }
.sp-faq p {
  margin: 0;
  padding: 0 0 20px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 72ch;
}

/* related services */
.sp-related {
  list-style: none;
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px dashed var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.sp-related .sp-related-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.sp-related a {
  font-family: var(--mono);
  font-size: 13px;
  padding: 9px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}
.sp-related a:hover {
  color: var(--brand-deep);
  border-color: var(--brand);
  transform: translateY(-1px);
}
