/* ── Service page shared styles ─────────────────────────────────────────────── */

/* Hero */
.sp-hero {
  padding: 130px 0 64px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: #c4a03c; }
.breadcrumb-sep { opacity: .4; }
.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,160,60,.1);
  border: 1px solid rgba(196,160,60,.28);
  color: #c4a03c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.sp-title {
  font-family: 'Piazzolla', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 720px;
}
.sp-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin-bottom: 30px;
  line-height: 1.75;
}
.sp-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Content sections */
.sp-section {
  padding: 64px 0;
}
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 780px) {
  .sp-grid { grid-template-columns: 1fr; }
}
.sp-grid-text h2 {
  font-family: 'Piazzolla', Georgia, serif;
  font-size: 1.55rem;
  color: #0A1128;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.sp-grid-text h3 {
  font-family: 'Piazzolla', Georgia, serif;
  font-size: 1.15rem;
  color: #0A1128;
  margin: 20px 0 8px;
  font-weight: 600;
}
.sp-grid-text p {
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: .98rem;
}
.sp-grid-text ul {
  color: #4a5568;
  line-height: 1.75;
  padding-left: 18px;
  margin-bottom: 14px;
}
.sp-grid-text ul li { margin-bottom: 6px; font-size: .98rem; }
.sp-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0,0,0,.13);
}
.sp-image img {
  width: 100%;
  height: auto;
  display: block;
}
.sp-image-caption {
  font-size: .8rem;
  color: #94a3b8;
  padding: 8px 12px;
  background: #f1f5fb;
  text-align: center;
}

/* Features grid — 3 cards стекаются вертикально внутри колонки ~544px;
   auto-fit minmax(210px) давал раскладку 2+1 (осиротевшая карточка) */
.sp-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}
.sp-feature {
  background: #f7faff;
  border: 1px solid #dde6f5;
  border-radius: 12px;
  padding: 22px 18px;
}
.sp-feature-icon { font-size: 1.6rem; margin-bottom: 10px; }
.sp-feature h4 {
  font-family: 'Piazzolla', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A1128;
  margin-bottom: 6px;
}
.sp-feature p { font-size: .88rem; color: #64748b; margin: 0; line-height: 1.55; }

/* CTA strip */
.sp-cta-strip {
  padding: 56px 0;
  text-align: center;
}
.sp-cta-strip h2 {
  font-family: 'Piazzolla', Georgia, serif;
  font-size: 1.85rem;
  color: #0A1128;
  margin-bottom: 10px;
}
.sp-cta-strip p {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.sp-contact-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Outline button variant for light backgrounds (CTA strips sit on
   section-light, unlike .btn-outline which is styled for dark hero/section-dark) */
.btn-outline-dark {
  background: transparent;
  color: #0A1128;
  border: 2px solid #cbd5e1;
}
.btn-outline-dark:hover {
  border-color: #c4a03c;
  color: #a07c3a;
}

/* Related services */
.sp-related { padding: 48px 0; }
.sp-related-heading {
  font-family: 'Piazzolla', Georgia, serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}
.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.sp-related-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  display: block;
  transition: border-color .2s, background .2s;
}
.sp-related-card:hover {
  border-color: rgba(196,160,60,.38);
  background: rgba(196,160,60,.04);
}
.sp-related-card-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  font-size: .97rem;
}
.sp-related-card-desc {
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  line-height: 1.5;
}

/* Data table (e.g. sourced water-quality figures) */
.sp-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid #dde6f5;
  border-radius: 10px;
}
.sp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.sp-table caption {
  text-align: left;
  font-size: .78rem;
  color: #94a3b8;
  padding: 10px 14px 0;
  caption-side: top;
}
.sp-table th, .sp-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #eef2f9;
}
.sp-table th {
  background: #f7faff;
  color: #0A1128;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sp-table td { color: #4a5568; }
.sp-table tr:last-child td { border-bottom: none; }

/* Health / safety callout box */
.sp-note {
  background: #f7faff;
  border-left: 3px solid #c4a03c;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.sp-note p {
  margin: 0;
  color: #4a5568;
  font-size: .95rem;
  line-height: 1.65;
}
.sp-note strong { color: #0A1128; }
