/* Shared service-page styles */

.svc-banner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 56px;
  color: #fff;
  background: #06120e;
}
.svc-banner::before,
.svc-banner::after {
  content: "";
  position: absolute;
  inset: 0;
}
.svc-banner::before {
  inset: -32px;
  background-image: var(--svc-banner-image);
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.08);
}
.svc-banner::after {
  background: linear-gradient(180deg, rgba(6, 18, 14, 0.55) 0%, rgba(6, 18, 14, 0.88) 100%);
}
.svc-banner .container { position: relative; z-index: 1; }
.svc-banner__content {
  max-width: 740px;
  padding: 28px 32px;
  border-radius: 20px;
  background: rgba(6, 18, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.svc-banner__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8f4ee;
  background: rgba(255, 255, 255, 0.16);
}
.svc-banner h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  font-weight: 650;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.svc-banner__lead {
  margin: 12px 0 0;
  max-width: none;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
}
.svc-banner p {
  margin: 12px 0 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.6;
}

.svc-page { padding: 70px 0 110px; }
.svc-page h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--heading-color);
}
.svc-page h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.svc-page p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.svc-page .svc-lede {
  font-size: 19px;
  line-height: 1.7;
  max-width: 720px;
}
.svc-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.svc-toc {
  position: sticky;
  top: 100px;
  padding: 22px;
  border-left: 3px solid var(--primary-color);
  background: #f6f8f7;
}
.svc-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--heading-color);
}
.svc-toc a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: #444;
  text-decoration: none;
}
.svc-toc a:hover { color: var(--primary-color); }

.svc-section { margin-top: 56px; scroll-margin-top: 110px; }
.svc-section:first-of-type { margin-top: 0; }

.svc-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.svc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
}

.svc-feature h3 { margin-bottom: 8px; }
.svc-feature p { margin: 0; font-size: 16px; }

.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svc-list li {
  position: relative;
  padding: 0 0 16px 22px;
  font-size: 16px;
  line-height: 1.55;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: svcstep;
}
.svc-step {
  padding-top: 16px;
  border-top: 2px solid var(--heading-color);
  counter-increment: svcstep;
}
.svc-step::before {
  content: "0" counter(svcstep);
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #888;
}
.svc-step h3 { font-size: 20px; }
.svc-step p { margin: 0; font-size: 15px; }

.svc-photo {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}
.svc-photo--tall { min-height: 360px; object-fit: cover; }
.svc-photo-pair {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}
.svc-photo-pair img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

.svc-quote {
  margin: 0;
  max-width: 820px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--heading-color);
}

.svc-rows { display: grid; gap: 0; }
.svc-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #e6e6e6;
}
.svc-row:first-child { border-top: 1px solid #e6e6e6; }
.svc-row strong { color: var(--heading-color); font-size: 15px; }
.svc-row p { margin: 0; }

.svc-aside {
  padding: 28px;
  border-radius: 24px;
  background: #f4f6f5;
}
.svc-aside h3 { font-size: 20px; margin-bottom: 14px; }

.svc-faq details {
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
}
.svc-faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--heading-color);
  list-style: none;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after {
  content: "+";
  float: right;
  color: #888;
}
.svc-faq details[open] summary::after { content: "–"; }
.svc-faq p {
  margin: 12px 0 4px;
  font-size: 16px;
}

.svc-cta {
  margin-top: 64px;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(145deg, #124333 0%, #215846 100%);
  color: #fff;
}
.svc-cta h2 { color: #fff; margin-bottom: 10px; }
.svc-cta p { color: rgba(255, 255, 255, 0.9); margin-bottom: 22px; max-width: 560px; }
.svc-cta a {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: #124333;
  font-weight: 600;
  text-decoration: none;
}
.svc-cta a:hover { opacity: 0.92; }

.svc-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .svc-banner { min-height: 340px; padding: 128px 0 36px; }
  .svc-banner__content { padding: 22px 20px; }
  .svc-layout,
  .svc-grid-2,
  .svc-grid-3,
  .svc-steps,
  .svc-photo-pair,
  .svc-row {
    grid-template-columns: 1fr;
  }
  .svc-toc { position: static; margin-bottom: 28px; }
  .svc-photo-pair img { height: 200px; }
  .svc-cta { padding: 28px; }
}
