/* =============================================
   MULTIMOOVE — Pages services (commun)
============================================= */

.sp-hero {
  background: linear-gradient(135deg, #005f8a 0%, var(--blue) 60%, var(--blue-mid) 100%);
  padding: 140px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.sp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 20%, rgba(255,255,255,.07) 0%, transparent 60%);
  pointer-events: none;
}
.sp-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.sp-hero__tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.95);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 20px;
}
.sp-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: white;
}
.sp-hero__title span { color: var(--blue-light); }
.sp-hero__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 36px;
}
.sp-hero__icon {
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,.1);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.sp-hero__icon svg { width: 80px; height: 80px; }
.sp-hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.sp-hero__wave svg { width: 100%; height: 60px; }

/* ---- Breadcrumb ---- */
.sp-breadcrumb {
  background: var(--grey-light);
  border-bottom: 1px solid #e5edf2;
  padding: 12px 0;
}
.sp-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--grey);
}
.sp-breadcrumb a { color: var(--blue); font-weight: 500; }
.sp-breadcrumb a:hover { text-decoration: underline; }
.sp-breadcrumb__sep { color: #ccd4da; }

/* ---- Content layout ---- */
.sp-body { padding: 80px 0; }
.sp-body__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: flex-start;
}

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

.sp-section__tag {
  display: inline-block;
  background: var(--blue-xlight);
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.sp-section h2 {
  font-size: 1.6rem;
  font-family: var(--font-head);
  color: var(--dark);
  margin-bottom: 16px;
}
.sp-section p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: .97rem;
}

/* ---- Deliverables grid ---- */
.sp-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.sp-deliverable {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--blue);
  transition: var(--transition);
}
.sp-deliverable:hover {
  background: var(--blue-xlight);
  border-left-color: var(--blue);
  transform: translateX(4px);
}
.sp-deliverable h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.sp-deliverable p {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
}

/* ---- Process steps ---- */
.sp-steps { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.sp-step {
  display: flex;
  gap: 20px;
  position: relative;
}
.sp-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--blue-light);
}
.sp-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  z-index: 1;
}
.sp-step__content {
  padding-bottom: 32px;
}
.sp-step__content h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.sp-step__content p {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

/* ---- Sidebar ---- */
.sp-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

.sp-cta-card {
  background: linear-gradient(145deg, var(--blue) 0%, #006fa0 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: white;
  margin-bottom: 24px;
}
.sp-cta-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sp-cta-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 24px;
}
.sp-cta-card .btn {
  background: white;
  color: var(--blue);
  width: 100%;
  justify-content: center;
  font-weight: 700;
}
.sp-cta-card .btn:hover { background: var(--blue-xlight); transform: translateY(-2px); }
.sp-cta-card__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.sp-cta-card__info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.sp-cta-card__info svg { width: 16px; height: 16px; flex-shrink: 0; }

.sp-referent {
  background: white;
  border: 1.5px solid var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sp-referent__label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.sp-referent__person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sp-referent__person + .sp-referent__person { margin-top: 12px; }
.sp-referent__photo {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--blue-light);
  background: #ddeef5;
  flex-shrink: 0;
}
.sp-referent__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.sp-referent__photo--placeholder img { display: none; }
.sp-referent__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0;
}
.sp-referent__photo--placeholder .sp-referent__initials { opacity: 1; }
.sp-referent__details { display: flex; flex-direction: column; gap: 2px; }
.sp-referent__name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}
.sp-referent__role {
  font-size: .8rem;
  color: var(--grey);
}

.sp-other-services {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sp-other-services h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sp-other-services ul { display: flex; flex-direction: column; gap: 4px; }
.sp-other-services li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--grey);
  font-weight: 500;
  transition: var(--transition);
}
.sp-other-services li a:hover { background: white; color: var(--blue); }
.sp-other-services li a.active { background: var(--blue-xlight); color: var(--blue); font-weight: 600; }
.sp-other-services li a svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- CTA bottom ---- */
.sp-cta-bottom {
  background: linear-gradient(135deg, #f0f9fd 0%, #e6f5fa 100%);
  padding: 80px 0;
  text-align: center;
}
.sp-cta-bottom h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.sp-cta-bottom p {
  color: var(--grey);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.sp-cta-bottom__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sp-cta-bottom .btn--ghost-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.sp-cta-bottom .btn--ghost-dark:hover { background: var(--blue); color: white; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .sp-body__inner { grid-template-columns: 1fr; }
  .sp-sidebar { position: static; }
  .sp-hero__inner { grid-template-columns: 1fr; }
  .sp-hero__icon { display: none; }
}
@media (max-width: 640px) {
  .sp-deliverables { grid-template-columns: 1fr; }
  .sp-hero { padding: 120px 0 60px; }
}
