/* ============================================================
   Service subpage shared styles
   ============================================================ */

/* STATS ROW */
.svc-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
  margin-top: 32px;
}
.svc-stats > div { display: flex; flex-direction: column; gap: 4px; }
.svc-stats strong {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.svc-stats strong small { font-size: 14px; color: var(--mute); margin-left: 2px; font-weight: 400; }
.svc-stats span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

/* CONTENT LAYOUT */
.svc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .svc-content { grid-template-columns: 1fr; gap: 32px; } }
.svc-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
}
.svc-content p + p { margin-top: 16px; }

/* IMAGE */
.svc-page-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* BULLETS */
.bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 14px;
}
.bullets li {
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 12px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}
@media (max-width: 700px) { .bullets { grid-template-columns: 1fr; } }

/* RELATED SERVICES */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--paper);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.3s, color 0.3s;
}
.related-card:hover { background: var(--ink); color: var(--paper); }
.related-card:hover .related-num { color: var(--yellow); }
.related-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--mute); transition: color 0.3s;
}
.related-card h3 { font-size: 20px; letter-spacing: -0.02em; }
.related-card p { font-size: 13px; color: inherit; opacity: 0.7; line-height: 1.45; }

/* FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}
.faq-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  position: relative; flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  transition: transform 0.3s;
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon {
  background: var(--yellow);
  border-color: var(--yellow-2);
  transform: rotate(180deg);
}
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  padding: 0 0 28px;
  max-width: 70ch;
}
.faq-a p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* CTA STRIP */
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 80px);
}
footer { margin-top: 0; }
