/* =============================================================================
   SANDTON PLUMBING — SERVICE PAGES STYLESHEET
   Shared premium styles for all individual service page templates.
   Depends on: assets/css/main.css (loaded first, provides :root variables)
   ============================================================================= */

/* ─── SP HERO ────────────────────────────────────────────────────────────────── */
.sp-hero {
  position: relative;
  background: linear-gradient(145deg, #0a5c6b 0%, #073f4a 45%, #0d1b2a 100%);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

/* Geometric grid overlay */
.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

/* Radial light bloom — left */
.sp-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(10,92,107,0.45) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.sp-hero .container { position: relative; z-index: 1; }

/* Gold bottom accent line */
.sp-hero__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #c9922a 30%, #e8b84b 60%, transparent 100%);
  pointer-events: none;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────────────────────── */
.sp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.75rem;
  font-size: 0.8125rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

.sp-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.sp-breadcrumb a:hover { color: var(--secondary-light, #e8b84b); }

.sp-breadcrumb__sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.sp-breadcrumb__current {
  color: var(--secondary-light, #e8b84b);
  font-weight: 600;
}

/* ─── HERO INNER LAYOUT ──────────────────────────────────────────────────────── */
.sp-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
}

.sp-hero__body { max-width: 700px; }

/* ─── HERO BADGE ─────────────────────────────────────────────────────────────── */
.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 146, 42, 0.14);
  border: 1px solid rgba(201, 146, 42, 0.45);
  color: #e8b84b;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full, 9999px);
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(201, 146, 42, 0.15);
}

.sp-hero__badge i { font-size: 0.875rem; }

/* ─── HERO HEADING ───────────────────────────────────────────────────────────── */
.sp-hero__title {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Gold underline accent on key word */
.sp-hero__title span {
  position: relative;
  display: inline-block;
}

.sp-hero__title span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9922a, #e8b84b);
  border-radius: 2px;
}

.sp-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* ─── HERO CTAs ──────────────────────────────────────────────────────────────── */
.sp-hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

/* ─── HERO TRUST META BADGES ─────────────────────────────────────────────────── */
.sp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.sp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  padding: 0.4375rem 0.875rem;
  border-radius: var(--radius-md, 10px);
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all var(--transition, 0.25s ease);
}

.sp-trust-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.sp-trust-badge i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.sp-trust-badge i.teal   { color: #6dd4e4; }
.sp-trust-badge i.gold   { color: #e8b84b; }
.sp-trust-badge i.green  { color: #34d399; }
.sp-trust-badge i.red    { color: #f87171; }

/* ─── HERO PARTICLES ─────────────────────────────────────────────────────────── */
.sp-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.sp-hero__particles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: particle-float 8s ease-in-out infinite;
}
.sp-hero__particles span:nth-child(1) { width: 300px; height: 300px; background: var(--primary-light, #0e7a8f); top: -80px; right: 10%; animation-delay: 0s; }
.sp-hero__particles span:nth-child(2) { width: 180px; height: 180px; background: var(--secondary, #c9922a);    bottom: -40px; right: 30%; animation-delay: 3s; }
.sp-hero__particles span:nth-child(3) { width: 120px; height: 120px; background: var(--white);                 top: 30%; right: 5%;  animation-delay: 6s; }

/* ─── HERO BADGE (live dot) ──────────────────────────────────────────────────── */
.sp-hero__badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-live 2s ease infinite;
}

/* ─── HERO TITLE ACCENT ──────────────────────────────────────────────────────── */
.sp-hero__title-accent {
  display: block;
  font-size: 0.6em;
  font-weight: 600;
  color: var(--secondary-light, #e8b84b);
  letter-spacing: 0.01em;
  margin-top: 0.25rem;
}
.sp-hero__title-accent::after { display: none; }

/* ─── HERO STATS ROW ─────────────────────────────────────────────────────────── */
.sp-hero__stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.sp-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sp-hero-stat__num {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--secondary-light, #e8b84b);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.sp-hero-stat__num small { font-size: 0.55em; font-weight: 600; }
.sp-hero-stat__num i     { font-size: 0.65em; color: var(--secondary-light, #e8b84b); }
.sp-hero-stat__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.2rem;
}
.sp-hero-stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── HERO SIDE CARD ─────────────────────────────────────────────────────────── */
.sp-hero__side { flex-shrink: 0; }

.sp-hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl, 24px);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  min-width: 260px;
  max-width: 300px;
}

/* Card header: icon + label/number */
.sp-hero-card__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}
.sp-hero-card__icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary, #0a5c6b), var(--primary-light, #0e7a8f));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,92,107,0.4);
}

.sp-hero-card__label {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.sp-hero-card__label i { font-size: 0.7rem; }

.sp-hero-card__num {
  display: block;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 1.375rem;
  font-weight: 800;
  color: #e8b84b;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s;
}
.sp-hero-card__num:hover { color: #fff; }

.sp-hero-card__area {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.sp-hero-card__area i { color: var(--primary-light, #0e7a8f); font-size: 0.75rem; }

/* Action buttons inside card */
.sp-hero-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-md, 10px);
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  margin-bottom: 0.5rem;
}
.sp-hero-card__btn--call {
  background: linear-gradient(135deg, var(--primary, #0a5c6b), var(--primary-light, #0e7a8f));
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,92,107,0.4);
}
.sp-hero-card__btn--call:hover { box-shadow: 0 6px 22px rgba(10,92,107,0.55); transform: translateY(-1px); }
.sp-hero-card__btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.sp-hero-card__btn--wa:hover { background: #1fad54; transform: translateY(-1px); }

.sp-hero-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1rem 0 0.875rem;
}

/* Service pills */
.sp-hero-card__services {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.5rem;
}
.sp-hero-card__pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md, 10px);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  transition: all 0.2s;
}
.sp-hero-card__pill:hover {
  background: rgba(10,92,107,0.25);
  border-color: rgba(10,92,107,0.4);
  color: #fff;
}
.sp-hero-card__pill i { color: var(--secondary-light, #e8b84b); font-size: 0.75rem; flex-shrink: 0; }

/* ─── MOBILE HERO ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sp-hero { padding: 2.5rem 0 2rem; }
  .sp-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .sp-hero__title { font-size: clamp(1.625rem, 6vw, 2.25rem); }
  .sp-hero__title-accent { font-size: 0.8em; }
  .sp-hero__sub { font-size: 0.9375rem; margin-bottom: 1.25rem; }
  .sp-hero__stats { gap: 0.75rem; margin-bottom: 1.25rem; }
  .sp-hero-stat__num { font-size: 1.125rem; }
  .sp-hero__ctas { flex-direction: column; }
  .sp-hero__ctas .btn { width: 100%; justify-content: center; }
  .sp-hero__trust { gap: 0.5rem; }
  .sp-hero__side { order: -1; }
  .sp-hero-card { max-width: 100%; min-width: unset; }
  .sp-hero-card__services { flex-direction: row; flex-wrap: wrap; }
  .sp-hero-card__pill { flex: 0 1 auto; font-size: 0.75rem; padding: 0.4rem 0.6rem; }
}

/* ─── CONTENT WRAPPER ────────────────────────────────────────────────────────── */
.sp-content-wrap {
  background: var(--light, #f4f7f8);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

/* ─── TWO COLUMN LAYOUT ──────────────────────────────────────────────────────── */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

/* ─── MAIN CONTENT AREA ──────────────────────────────────────────────────────── */
.sp-main {
  min-width: 0; /* Prevent grid blowout */
}

/* Content sections */
.sp-section {
  background: var(--white, #ffffff);
  border-radius: var(--radius-lg, 16px);
  padding: 0;
  margin-bottom: 1.5rem;
  border: 1.5px solid var(--border, #e2e8f0);
  box-shadow: 0 2px 16px rgba(10,92,107,0.06);
  overflow: hidden;
  position: relative;
}

/* teal top accent bar */
.sp-section::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary, #0a5c6b) 0%, var(--secondary, #c9922a) 100%);
}

.sp-section:last-child { margin-bottom: 0; }

/* Section headings */
.sp-section__title {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark, #0d1b2a);
  margin: 0;
  padding: 1.5rem 2rem;
  border-bottom: 1.5px solid var(--border, #e2e8f0);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(10,92,107,0.03) 0%, rgba(255,255,255,0) 60%);
  letter-spacing: -0.01em;
}

.sp-section__title i {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary, #0a5c6b), #0e7a8f);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: #fff;
  flex-shrink: 0;
}

.sp-section__title--gold-accent i {
  background: linear-gradient(135deg, var(--secondary, #c9922a), #e8b84b);
}

/* body padding wrapper — needed since section padding is now 0 */
.sp-intro,
.sp-benefits,
.sp-process,
.sp-faq { padding: 1.75rem 2rem 2rem; }

/* ─── INTRO CONTENT (legacy) ──────────────────────────────────────────────────── */
.sp-intro { margin-top: 0; }
.sp-intro p { font-size: 0.9875rem; color: var(--text-secondary, #4a5568); line-height: 1.85; margin-bottom: 1rem; }
.sp-intro p:last-child { margin-bottom: 0; }
/* Remove heavy bold styling from inline <strong> in paragraphs */
.sp-intro p strong { font-weight: 400; color: inherit; }
.sp-intro__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #f0fafb 0%, #fdf8f0 100%);
  border: 1.5px solid rgba(10,92,107,0.18);
  border-left: 4px solid var(--primary, #0a5c6b);
  border-radius: 0 var(--radius-md, 10px) var(--radius-md, 10px) 0;
  padding: 1.25rem 1.375rem;
  margin: 1.25rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark, #0d1b2a);
  line-height: 1.7;
}
.sp-intro__highlight i {
  font-size: 1.5rem;
  color: var(--secondary, #c9922a);
  flex-shrink: 0;
  margin-top: 2px;
}
.sp-intro__highlight strong {
  font-weight: 700;
  color: var(--dark, #0d1b2a);
}

/* ─── INTRO SECTION — PREMIUM REDESIGN ───────────────────────────────────────── */
.sp-intro-section {
  padding: 0 !important;
  overflow: hidden;
  border: none;
  background: var(--white);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
/* suppress generic top bar on this one — it has its own design */
.sp-intro-section::before { display: none; }

.sp-intro-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary, #0a5c6b);
  padding: 1rem 2rem 0;
}
.sp-intro-section__dot {
  width: 8px; height: 8px;
  background: var(--primary, #0a5c6b);
  border-radius: 50%;
  flex-shrink: 0;
}

.sp-intro-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Content side */
.sp-intro-section__content {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.sp-intro-section__title {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark, #0d1b2a);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.sp-intro-section__title span {
  color: var(--primary, #0a5c6b);
}

.sp-intro-section__text {
  font-size: 0.9375rem;
  color: var(--text-secondary, #4a5568);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Highlight block */
.sp-intro-section__highlight {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(10,92,107,0.05), rgba(201,146,42,0.05));
  border-left: 3px solid var(--secondary, #c9922a);
  border-radius: 0 var(--radius-md, 10px) var(--radius-md, 10px) 0;
  padding: 1rem 1.125rem;
  margin-bottom: 1.25rem;
}
.sp-intro-section__highlight-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--secondary, #c9922a), #e8b84b);
  border-radius: var(--radius-sm, 6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.sp-intro-section__highlight strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark, #0d1b2a);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
}
.sp-intro-section__highlight span {
  font-size: 0.8125rem;
  color: var(--text-secondary, #4a5568);
  line-height: 1.55;
}

/* Trust chips */
.sp-intro-section__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.sp-intro-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(10,92,107,0.06);
  border: 1px solid rgba(10,92,107,0.12);
  border-radius: 999px;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary, #0a5c6b);
}
.sp-intro-chip i { font-size: 0.7rem; }

/* CTA button */
.sp-intro-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--primary, #0a5c6b), #0e7a8f);
  color: var(--white);
  border-radius: var(--radius-md, 10px);
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(10,92,107,0.35);
  transition: all 0.25s;
  align-self: flex-start;
  margin-top: auto;
}
.sp-intro-section__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,92,107,0.45);
}

/* Image side */
.sp-intro-section__image-col {
  position: relative;
  min-height: 380px;
}
.sp-intro-section__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sp-intro-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.sp-intro-section__img-wrap:hover .sp-intro-section__img {
  transform: scale(1.03);
}

/* Dark overlay */
.sp-intro-section__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,27,42,0.35) 0%, rgba(13,27,42,0.1) 60%);
  pointer-events: none;
}

/* Floating rating badge */
.sp-intro-section__img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg, 16px);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 2;
}
.sp-intro-section__img-badge i {
  font-size: 1.25rem;
  color: var(--secondary, #c9922a);
}
.sp-intro-section__img-badge strong {
  display: block;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark, #0d1b2a);
  line-height: 1.2;
}
.sp-intro-section__img-badge span {
  font-size: 0.7rem;
  color: var(--text-secondary, #4a5568);
}

/* Floating experience chip */
.sp-intro-section__img-exp {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--primary, #0a5c6b);
  border-radius: var(--radius-lg, 16px);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(10,92,107,0.4);
  z-index: 2;
}
.sp-intro-section__img-exp-num {
  display: block;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--secondary-light, #e8b84b);
  line-height: 1;
}
.sp-intro-section__img-exp-label {
  display: block;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
  white-space: nowrap;
}

/* ─── MOBILE INTRO SECTION ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sp-intro-section {
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin-left: clamp(-2rem, -4vw, -1rem);
    margin-right: clamp(-2rem, -4vw, -1rem);
  }
  .sp-intro-section__grid { grid-template-columns: 1fr; }
  .sp-intro-section__image-col { min-height: 260px; position: relative; }
  .sp-intro-section__img-wrap { position: relative; height: 260px; }
  .sp-intro-section__content { padding: 1.25rem 1rem; }
  .sp-intro-section__title { font-size: 1.5rem; }
  .sp-intro-section__cta { width: 100%; justify-content: center; }
  .sp-intro-section__eyebrow { padding: 1rem 1rem 0; }
  .sp-intro-section__highlight { padding: 0.875rem 1rem; }
  .sp-intro-section__text { font-size: 0.9rem; }
}

/* ─── BENEFITS LIST ──────────────────────────────────────────────────────────── */
.sp-benefits { margin-top: 0; }

.sp-benefits__list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }

.sp-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: #f8fbfc;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: var(--radius-md, 10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sp-benefits__item:hover {
  background: #fff;
  border-color: var(--primary, #0a5c6b);
  box-shadow: 0 4px 16px rgba(10,92,107,0.1);
}

.sp-benefits__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--secondary, #c9922a) 0%, #e8b84b 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(201, 146, 42, 0.3);
}

.sp-benefits__icon i {
  font-size: 0.875rem;
  color: #ffffff;
}

.sp-benefits__text { flex: 1; }

.sp-benefits__label {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark, #0d1b2a);
  margin-bottom: 0.2rem;
  display: block;
}

.sp-benefits__desc {
  font-size: 0.845rem;
  color: var(--text-muted, #718096);
  line-height: 1.6;
}

/* ─── 3-STEP PROCESS ─────────────────────────────────────────────────────────── */
.sp-process { margin-top: 0; }

.sp-process__steps { display: flex; flex-direction: column; gap: 1rem; }

.sp-process__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #f8fbfc 0%, #fff 100%);
  border: 1.5px solid var(--border, #e2e8f0);
  border-left: 4px solid var(--primary, #0a5c6b);
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem 1.375rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.sp-process__step:hover {
  box-shadow: 0 6px 20px rgba(10,92,107,0.1);
  border-left-color: var(--secondary, #c9922a);
}

.sp-process__num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary, #0a5c6b) 0%, #0e7a8f 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 92, 107, 0.4);
}

.sp-process__body { flex: 1; padding-top: 0.125rem; }

.sp-process__title {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark, #0d1b2a);
  margin-bottom: 0.375rem;
}

.sp-process__desc {
  font-size: 0.875rem;
  color: var(--text-secondary, #4a5568);
  line-height: 1.7;
  margin: 0;
}

/* ─── FAQ ACCORDION ──────────────────────────────────────────────────────────── */
.sp-faq { margin-top: 1.25rem; }

.sp-faq__item {
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: var(--radius-md, 10px);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition, 0.25s ease), box-shadow var(--transition, 0.25s ease);
}

.sp-faq__item:last-child { margin-bottom: 0; }

.sp-faq__item[open] {
  border-color: var(--primary, #0a5c6b);
  box-shadow: 0 0 0 3px rgba(10, 92, 107, 0.08);
}

.sp-faq__item summary {
  padding: 1.125rem 1.375rem;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--dark, #0d1b2a);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: background var(--transition, 0.25s ease), color var(--transition, 0.25s ease);
  position: relative;
}

.sp-faq__item summary::-webkit-details-marker { display: none; }

.sp-faq__item summary::after {
  content: '\2b'; /* plus */
  font-family: 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
  font-size: 0.8125rem;
  color: var(--primary, #0a5c6b);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--light, #f4f7f8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition, 0.25s ease);
}

.sp-faq__item[open] summary {
  background: rgba(10, 92, 107, 0.04);
  color: var(--primary, #0a5c6b);
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.sp-faq__item[open] summary::after {
  content: '\2212'; /* minus */
  background: var(--primary, #0a5c6b);
  color: #ffffff;
}

.sp-faq__body {
  padding: 1.125rem 1.375rem;
  font-size: 0.9375rem;
  color: var(--text-secondary, #4a5568);
  line-height: 1.75;
}

.sp-faq__body p { margin-bottom: 0.75rem; }
.sp-faq__body p:last-child { margin-bottom: 0; }

.sp-faq__body strong {
  color: var(--dark, #0d1b2a);
  font-weight: 600;
}

/* ─── SIDEBAR ────────────────────────────────────────────────────────────────── */
.sp-sidebar {
  position: sticky;
  top: calc(72px + 44px + 1.5rem); /* header + ebar + gap */
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ─── CALL BOX ───────────────────────────────────────────────────────────────── */
.sp-callbox {
  background: linear-gradient(155deg, #073f4a 0%, var(--dark, #0d1b2a) 100%);
  border-radius: var(--radius-xl, 24px);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(10, 92, 107, 0.45);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(0,0,0,0.18));
}

/* Gold top accent */
.sp-callbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary, #c9922a), #e8b84b, var(--secondary, #c9922a));
}

/* Glow blob */
.sp-callbox::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(10,92,107,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.sp-callbox__emergency {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #fca5a5;
  padding: 0.3125rem 0.875rem;
  border-radius: var(--radius-full, 9999px);
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sp-callbox__emergency i { font-size: 0.6875rem; }

.sp-callbox__label {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.sp-callbox__number {
  display: block;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 1.625rem;
  font-weight: 800;
  color: #e8b84b;
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  transition: color var(--transition, 0.25s ease);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.sp-callbox__number:hover { color: #ffffff; }

.sp-callbox__hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.sp-callbox__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.125rem 0;
  position: relative;
  z-index: 1;
}

.sp-callbox .btn {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0.625rem;
}

.sp-callbox .btn:last-of-type { margin-bottom: 0; }

.sp-callbox__note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  position: relative;
  z-index: 1;
}

.sp-callbox__note i { font-size: 0.6875rem; color: var(--primary-light, #0e7a8f); }

/* ─── SIDEBAR WIDGET ─────────────────────────────────────────────────────────── */
.sp-widget {
  background: var(--white, #ffffff);
  border-radius: var(--radius-lg, 16px);
  border: 1.5px solid var(--border, #e2e8f0);
  overflow: hidden;
  box-shadow: var(--shadow-xs, 0 1px 2px rgba(0,0,0,0.08));
}

.sp-widget__header {
  background: var(--primary, #0a5c6b);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.sp-widget__header-title {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white, #ffffff);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.sp-widget__header i {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

/* ─── SERVICES NAV ───────────────────────────────────────────────────────────── */
.sp-services-nav { list-style: none; }

.sp-services-nav__item { border-bottom: 1px solid var(--border, #e2e8f0); }
.sp-services-nav__item:last-child { border-bottom: none; }

.sp-services-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary, #4a5568);
  text-decoration: none;
  transition: all var(--transition, 0.25s ease);
}

.sp-services-nav__link:hover,
.sp-services-nav__link.is-active {
  background: rgba(10, 92, 107, 0.05);
  color: var(--primary, #0a5c6b);
  padding-left: 1.5rem;
}

.sp-services-nav__link i {
  font-size: 0.875rem;
  width: 20px;
  text-align: center;
  color: var(--primary, #0a5c6b);
  flex-shrink: 0;
}

.sp-services-nav__link .sp-nav-arrow {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--text-light, #a0aec0);
  transition: transform var(--transition, 0.25s ease), color var(--transition, 0.25s ease);
}

.sp-services-nav__link:hover .sp-nav-arrow,
.sp-services-nav__link.is-active .sp-nav-arrow {
  transform: translateX(3px);
  color: var(--primary, #0a5c6b);
}

/* ─── TRUST BADGES GRID ──────────────────────────────────────────────────────── */
.sp-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border, #e2e8f0);
}

.sp-trust-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4375rem;
  padding: 1.125rem 0.75rem;
  background: var(--white, #ffffff);
  transition: background var(--transition, 0.25s ease);
}

.sp-trust-grid__item:hover { background: var(--light, #f4f7f8); }

.sp-trust-grid__icon {
  width: 36px;
  height: 36px;
  background: rgba(10, 92, 107, 0.08);
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--primary, #0a5c6b);
  flex-shrink: 0;
}

.sp-trust-grid__label {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark, #0d1b2a);
  line-height: 1.3;
}

.sp-trust-grid__sub {
  font-size: 0.6875rem;
  color: var(--text-muted, #718096);
  line-height: 1.3;
}

/* ─── BOTTOM CTA BANNER ──────────────────────────────────────────────────────── */
.sp-cta-banner {
  background: var(--dark, #0d1b2a);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

/* Teal left border */
.sp-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--secondary, #c9922a), var(--primary, #0a5c6b));
}

/* Subtle radial glow */
.sp-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: 40%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(10,92,107,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.sp-cta-banner .container { position: relative; z-index: 1; }

.sp-cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.sp-cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary, #c9922a);
  margin-bottom: 0.625rem;
}

.sp-cta-banner__title {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white, #ffffff);
  line-height: 1.2;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.sp-cta-banner__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.sp-cta-banner__sub strong { color: #e8b84b; }

.sp-cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 240px;
}

.sp-cta-banner__actions .btn {
  justify-content: center;
  font-size: 1rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .sp-layout { grid-template-columns: 1fr 300px; }
}

@media (max-width: 900px) {
  .sp-layout {
    grid-template-columns: 1fr;
  }

  .sp-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .sp-callbox { grid-column: span 2; }

  .sp-hero__inner {
    grid-template-columns: 1fr;
  }

  .sp-hero__side { display: none; }

  .sp-cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sp-cta-banner__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .sp-sidebar {
    grid-template-columns: 1fr;
  }

  .sp-callbox { grid-column: span 1; }

  .sp-section__title { padding: 1.125rem 1.25rem; font-size: 1.05rem; }
  .sp-intro,
  .sp-benefits,
  .sp-process,
  .sp-faq { padding: 1.25rem 1rem 1.5rem; }
  /* stack highlight box vertically on mobile */
  .sp-intro__highlight {
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem;
  }
  .sp-intro__highlight i { font-size: 1.25rem; margin-top: 0; }

  .sp-hero__ctas { flex-direction: column; }
  .sp-hero__ctas .btn { width: 100%; justify-content: center; }

  .sp-cta-banner__actions { flex-direction: column; }
  .sp-cta-banner__actions .btn { width: 100%; }

  .sp-trust-grid { grid-template-columns: repeat(2, 1fr); }

  .sp-process__step:not(:last-child)::before,
  .sp-process__step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .sp-hero__trust { gap: 0.5rem; }
  .sp-trust-badge { font-size: 0.75rem; padding: 0.375rem 0.625rem; }
}

/* ─── SERVICE CARDS V2 ───────────────────────────────────────────────────────── */
.service-card--v2 {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 12px rgba(10,92,107,0.06);
}

.service-card--v2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card--v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(10,92,107,0.14);
  border-color: var(--primary-light);
}

.service-card--v2:hover::after { transform: scaleX(1); }

.service-card--v2 .service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
  margin-bottom: 0;
}

.service-card--v2 .service-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,92,107,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card--v2:hover .service-card__icon-wrap {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(10,92,107,0.3);
}

.service-card--v2 .service-card__icon {
  font-size: 1.4rem;
  color: #fff;
}

.service-card--v2 .service-card__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--dark);
  padding: 1rem 1.5rem 0.5rem;
  margin: 0;
  line-height: 1.3;
}

.service-card--v2 .service-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 1.5rem;
  flex: 1;
  margin: 0;
}

.service-card--v2 .service-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 1.5rem 1.5rem;
  padding: 0.7rem 1rem;
  background: var(--light, #f4f8f9);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-card--v2 .service-card__link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: none;
}

.service-card--v2 .service-card__link-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-card--v2 .service-card__link:hover .service-card__link-icon {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* Tag badges */
.service-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}

.service-card__tag--teal {
  background: rgba(10,92,107,0.1);
  color: var(--primary);
}

.service-card__tag--gold {
  background: rgba(201,146,42,0.12);
  color: #9a6e15;
}

.service-card__tag--red {
  background: rgba(220,38,38,0.09);
  color: #b91c1c;
}

/* ─── LEGAL PAGES ────────────────────────────────────────────────────────────── */
.sp-hero--legal { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.sp-hero__body--legal { max-width: 700px; }

.legal-wrap {
  padding: 3rem 0 4rem;
  background: var(--light, #f4f7f8);
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

/* Main document */
.legal-doc {
  background: var(--white);
  border-radius: var(--radius-lg, 16px);
  border: 1.5px solid var(--border, #e2e8f0);
  box-shadow: 0 2px 16px rgba(10,92,107,0.05);
  overflow: hidden;
}

.legal-section {
  padding: 1.75rem 2.25rem;
  border-bottom: 1.5px solid var(--border, #e2e8f0);
}

.legal-section:last-of-type { border-bottom: none; }

.legal-section h2 {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary, #0a5c6b);
  margin-bottom: 0.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid rgba(10,92,107,0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-section h3 {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark, #0d1b2a);
  margin: 1rem 0 0.5rem;
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--text-secondary, #4a5568);
  line-height: 1.8;
  margin-bottom: 0.875rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: none;
  margin: 0.5rem 0 0.875rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-section ul li {
  font-size: 0.9275rem;
  color: var(--text-secondary, #4a5568);
  line-height: 1.7;
  padding-left: 1.375rem;
  position: relative;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--secondary, #c9922a);
  border-radius: 50%;
}

.legal-section a {
  color: var(--primary, #0a5c6b);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(10,92,107,0.3);
  transition: border-color 0.2s;
}

.legal-section a:hover { border-bottom-color: var(--primary); }

.legal-section strong { color: var(--dark, #0d1b2a); font-weight: 700; }

/* Footer note */
.legal-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2.25rem;
  background: linear-gradient(135deg, rgba(10,92,107,0.04) 0%, rgba(201,146,42,0.04) 100%);
  border-top: 2px solid rgba(10,92,107,0.12);
}

.legal-footer-note i {
  font-size: 1.5rem;
  color: var(--primary, #0a5c6b);
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-footer-note p {
  font-size: 0.875rem;
  color: var(--text-muted, #718096);
  line-height: 1.7;
  margin: 0;
}

/* Sidebar */
.legal-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 2rem; }

.legal-sidebar__card {
  background: var(--white);
  border-radius: var(--radius-lg, 16px);
  border: 1.5px solid var(--border, #e2e8f0);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(10,92,107,0.05);
}

.legal-sidebar__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary, #0a5c6b), #0e7a8f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.legal-sidebar__card h3 {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark, #0d1b2a);
  margin-bottom: 0.5rem;
}

.legal-sidebar__card p {
  font-size: 0.875rem;
  color: var(--text-muted, #718096);
  line-height: 1.6;
}

.legal-sidebar__card--links h3 { margin-bottom: 0.875rem; }

.legal-sidebar__card--links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.legal-sidebar__card--links ul li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary, #4a5568);
  text-decoration: none;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-sm, 6px);
  transition: background 0.2s, color 0.2s;
}

.legal-sidebar__card--links ul li a:hover {
  background: rgba(10,92,107,0.06);
  color: var(--primary, #0a5c6b);
}

.legal-sidebar__card--links ul li a i { color: var(--primary, #0a5c6b); width: 16px; }

/* Legal responsive */
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .legal-sidebar { grid-template-columns: 1fr; }
  .legal-section { padding: 1.25rem 1rem; }
  .legal-footer-note { padding: 1.25rem 1rem; }
}

/* ─── CONTACT METHOD CARDS BAR ───────────────────────────────────────────────── */
.contact-methods-bar {
  background: var(--white);
  border-bottom: 1.5px solid var(--border, #e2e8f0);
  padding: 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1.5px solid var(--border, #e2e8f0);
  transition: background 0.2s ease;
}

.contact-method:last-child { border-right: none; }
.contact-method:hover { background: #f8fbfc; }

.contact-method__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary, #0a5c6b), #0e7a8f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,92,107,0.3);
}

.contact-method__icon--wa {
  background: linear-gradient(135deg, #25d366, #1fad54);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.contact-method__icon--form {
  background: linear-gradient(135deg, var(--secondary, #c9922a), #e8b84b);
  box-shadow: 0 4px 14px rgba(201,146,42,0.3);
}

.contact-method__label {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #718096);
  margin-bottom: 0.2rem;
}

.contact-method__value {
  display: block;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--dark, #0d1b2a);
  text-decoration: none;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}

.contact-method__value:hover { color: var(--primary, #0a5c6b); }

.contact-method__note {
  font-size: 0.8rem;
  color: var(--text-muted, #718096);
}

@media (max-width: 768px) {
  .contact-methods { grid-template-columns: 1fr; }
  .contact-method { border-right: none; border-bottom: 1.5px solid var(--border, #e2e8f0); padding: 1.125rem 1.25rem; }
  .contact-method:last-child { border-bottom: none; }
  .contact-method__icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 10px; }
  .contact-method__value { font-size: 1rem; }
}

.sp-media-card {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--white, #ffffff);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.1));
}

.sp-media-card__img {
  display: block;
  width: 100%;
  height: auto;
}

.sp-media-card__caption {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary, #4a5568);
  background: linear-gradient(180deg, rgba(244, 247, 248, 0.55), rgba(255, 255, 255, 1));
}
