/* ═══════════════════════════════════════════════════════════════════
   Service Safe Ltd — Individual service pages
   Split hero (copy + photo), feature list, CTA band.
   ═══════════════════════════════════════════════════════════════════ */

.sp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.sp-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px) var(--gutter);
  background:
    radial-gradient(ellipse 66% 48% at 0% 4%, rgba(125, 201, 255, 0.09), transparent 62%),
    var(--bg);
}

.sp-hero__inner { max-width: 620px; margin-left: auto; width: 100%; }

.sp-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.sp-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: var(--sp-2) 0 var(--sp-3);
}

.sp-divider {
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin-bottom: var(--sp-3);
}

.sp-subtitle { font-size: var(--fs-lg); color: var(--text-2); line-height: 1.65; }

.sp-features { margin: var(--sp-4) 0; }
.sp-features li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: var(--fs-sm);
  color: var(--text-2);
  margin-bottom: 13px;
}
.sp-features svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 3px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.sp-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.sp-callout {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: var(--sp-4);
  padding: var(--sp-2) var(--sp-3);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-card);
  font-size: var(--fs-sm);
  color: var(--text-2);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.sp-callout:hover { transform: translateY(-4px); background: rgba(125, 201, 255, 0.2); }
.sp-callout svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); }
.sp-callout strong { color: var(--accent); }

.sp-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.sp-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-3);
}
.sp-contact-item svg { width: 16px; height: 16px; color: var(--accent); }

/* ── Hero image ────────────────────────────────────────────────────── */
.sp-hero__media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-1);
  min-height: 320px;
  animation: sp-reveal 1.1s var(--ease) both;
}
/* Scrim keeps the bright photography from fighting the dark canvas and
   blends its left edge into the copy column. */
.sp-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--bg) 0%, rgba(6, 8, 9, 0.72) 24%, rgba(6, 8, 9, 0.34) 58%, rgba(6, 8, 9, 0.34) 100%);
}

@keyframes sp-reveal {
  from { clip-path: inset(0 0 0 100%); }
  to   { clip-path: inset(0 0 0 0); }
}
@media (prefers-reduced-motion: reduce) {
  .sp-hero__media { animation: none; }
}

@media (max-width: 900px) {
  .sp-hero { grid-template-columns: 1fr; min-height: 0; }
  /* min-height must be cleared here: combined with aspect-ratio it would
     impose a ~427px minimum width and overflow narrow phones. */
  .sp-hero__media { order: -1; min-height: 0; aspect-ratio: 16 / 9; }
  .sp-hero__media::after {
    background: linear-gradient(180deg, rgba(6, 8, 9, 0.34) 0%, rgba(6, 8, 9, 0.5) 46%, var(--bg) 100%);
  }
  .sp-hero__inner { margin-left: 0; max-width: none; }
}

/* ── CTA band ──────────────────────────────────────────────────────── */
.sp-cta-band {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  color: var(--text-2);
  text-align: center;
  padding-block: clamp(48px, 7vw, 80px);
}
.sp-cta-band h2 { margin-bottom: var(--sp-2); }
.sp-cta-band p { max-width: 56ch; margin: 0 auto var(--sp-4); }
.sp-cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }
