/* ===================================================================
   Service-page styles.
   Loaded AFTER assets/site.css, which carries the design tokens and the
   shared chrome (nav, footer, buttons, FAQ, comparison table). Only the
   pieces the homepage has no equivalent for live here.
=================================================================== */

/* ---------- page hero ---------- */
.svc-hero {
  position: relative;
  padding: 168px 0 76px;
  background: radial-gradient(ellipse 95% 70% at 50% -10%, #241E42 0%, var(--bg-0) 64%);
  border-bottom: 1px solid var(--border);
}
.svc-hero-inner { max-width: 860px; }

/* ---------- breadcrumb ---------- */
.crumbs { margin-bottom: 26px; font-size: 14px; color: var(--t3); }
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.crumbs a { color: var(--t2); text-decoration: none; transition: color .2s var(--ease); }
.crumbs a:hover, .crumbs a:focus-visible { color: var(--acc); }
.crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--t3);
  opacity: .55;
}
.crumbs [aria-current="page"] { color: var(--t1); }

/* ---------- lead / definition ---------- */
.svc-lead {
  margin-top: 20px;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--t1);
  line-height: 1.62;
  max-width: 60ch;
  font-weight: 500;
}
.svc-sub {
  margin-top: 16px;
  font-size: clamp(15.5px, 1.4vw, 17px);
  color: var(--t2);
  line-height: 1.72;
  max-width: 64ch;
}
.svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ---------- article body ---------- */
.page-main { padding: 96px 0 0; }
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 20px; }
.prose h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--t1);
  margin-top: 64px;
  text-wrap: balance;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--t1);
  margin-top: 38px;
}
.prose p { font-size: 16px; color: var(--t2); line-height: 1.78; }
.prose strong { color: var(--t1); font-weight: 600; }
.prose a {
  color: var(--acc);
  text-decoration: underline;
  text-decoration-color: var(--border-a);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: var(--acc); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.72;
  margin-top: 10px;
}
.prose li::marker { color: var(--acc-d); }

/* definition sentence — the "X is …" pattern answer engines lift */
.def-line {
  padding: 20px 24px;
  border-left: 3px solid var(--acc-d);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--glass);
  font-size: 17px;
  color: var(--t1);
  line-height: 1.62;
  font-weight: 500;
}

/* ---------- photo figures ---------- */
.svc-figs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.svc-fig { margin: 0; }
.svc-fig img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  display: block;
}
.svc-fig figcaption {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--t3);
  line-height: 1.6;
}

/* ---------- what-drives-the-price list ---------- */
.factor {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--glass);
  padding: 20px 24px;
}
.factor + .factor { margin-top: 14px; }
.factor h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--t1);
  margin: 0 0 8px;
}
.factor p { margin: 0; font-size: 15.5px; color: var(--t2); line-height: 1.7; }

/* ---------- sibling-service links ---------- */
.sibs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.sib {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--glass);
  text-decoration: none;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.sib:hover, .sib:focus-visible {
  border-color: var(--border-a);
  background: var(--glass-strong);
  transform: translateY(-2px);
}
.sib-name {
  display: block;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 7px;
}
.sib-desc { display: block; font-size: 14.5px; color: var(--t2); line-height: 1.6; }

/* ---------- closing CTA ---------- */
.svc-cta {
  margin-top: 92px;
  padding: 84px 0 96px;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, #14112a 0%, #221c44 55%, #14112a 100%);
  text-align: center;
}
.svc-cta h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--t1);
  text-wrap: balance;
}
.svc-cta p {
  margin: 16px auto 0;
  max-width: 54ch;
  font-size: 16.5px;
  color: var(--t2);
  line-height: 1.7;
}
.svc-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

/* ---------- FAQ block on service pages ---------- */
.svc-faq { margin-top: 92px; }
.svc-faq .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

@media (max-width: 760px) {
  .svc-hero { padding: 132px 0 60px; }
  .page-main { padding-top: 72px; }
  .prose h2 { margin-top: 48px; }
  .svc-cta { margin-top: 68px; padding: 64px 0 72px; }
  .svc-faq { margin-top: 68px; }
}
