/* Services hub + promo band — design tokens (shared across services pages) */
.services-hub,
.risk-page,
.qc-page,
.sh-promo {
  --sh-navy: #0f2c59;
  --sh-navy-mid: #1d3557;
  --sh-navy-deep: #0a1f3d;
  --sh-gold: #dac0a3;
  --sh-orange: #f97316;
  --sh-orange-dark: #ea580c;
  --sh-white: #ffffff;
  --sh-muted: #94a3b8;
  --sh-container: min(1180px, 100% - 2.5rem);
}

.services-hub .sh-container,
.risk-page .sh-container,
.qc-page .sh-container,
.sourcing-page .sh-container {
  width: var(--sh-container);
  margin-inline: auto;
}

/* —— Hero —— */
.sh-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3.25rem, 6vw, 4.5rem);
  color: var(--sh-white);
  background: linear-gradient(145deg, var(--sh-navy) 0%, var(--sh-navy-mid) 48%, var(--sh-navy-deep) 100%);
  overflow: hidden;
}

.sh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.sh-hero::after {
  content: "";
  position: absolute;
  width: 55vw;
  max-width: 520px;
  aspect-ratio: 1;
  right: -8%;
  top: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 192, 163, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

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

.sh-hero__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-navy);
  background: var(--sh-gold);
}

.sh-hero__title {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-head, Inter, sans-serif);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.sh-hero__title::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 4px;
  margin-top: 1.1rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sh-gold), var(--sh-orange));
}

.sh-hero__sub {
  margin: 1.25rem 0 0;
  max-width: 62ch;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.9);
}

.sh-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.75rem;
}

@media (min-width: 768px) {
  .sh-hero__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.sh-glass-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: inherit;
  text-decoration: none !important;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.sh-glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0.75rem 0.75rem 0 0;
  background: linear-gradient(90deg, var(--sh-gold), var(--sh-orange));
  opacity: 0.85;
}

.sh-glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(218, 192, 163, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.sh-glass-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-head, Inter, sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sh-white);
}

.sh-glass-card__body {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.82);
}

.sh-glass-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sh-orange);
}

.sh-glass-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--sh-gold);
  transition: gap 0.2s ease, color 0.2s ease;
}

.sh-glass-card:hover .sh-glass-card__link {
  gap: 0.55rem;
  color: var(--sh-white);
}

/* —— Irresistible Offer Banner —— */
.sh-promo {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(180deg, #0a1628 0%, var(--sh-navy-deep) 50%, #0a1628 100%);
}

.sh-promo__box {
  max-width: 56rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  border: 1px solid rgba(218, 192, 163, 0.35);
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(29, 53, 87, 0.95) 0%, rgba(15, 44, 89, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.45);
}

.sh-promo__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-navy);
  background: var(--sh-gold);
}

.sh-promo__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-head, Inter, sans-serif);
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 800;
  line-height: 1.35;
  color: #f8fafc;
}

.sh-promo__price-line {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.85);
}

.sh-promo__price-line strong {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-head, Inter, sans-serif);
  font-size: clamp(2.1rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--sh-orange);
}

.sh-promo__urgency {
  margin: 0 0 1.15rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--sh-gold);
}

.sh-promo__urgency strong {
  font-weight: 700;
  color: #f8fafc;
}

.sh-promo__guarantee {
  max-width: 46ch;
  margin: 0 auto 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.88);
}

.sh-promo__guarantee strong {
  font-weight: 800;
  color: #ffffff;
}

.sh-promo__promise {
  max-width: 62ch;
  margin: 1.25rem auto 0;
  padding: 1rem 1.15rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(218, 192, 163, 0.2);
  border-left: 4px solid var(--sh-gold);
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: left;
  color: rgba(248, 250, 252, 0.8);
  background: rgba(0, 0, 0, 0.2);
}

.sh-promo__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Solid orange CTA — locked inside dark promo card */
.sh-promo .sh-btn-solid,
.sh-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.1rem;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff !important;
  background-color: #f97316 !important;
  background-image: none !important;
  box-shadow:
    0 0 22px rgba(249, 115, 22, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.2) !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.sh-promo .sh-btn-solid span,
.sh-btn-solid span {
  color: #ffffff !important;
}

.sh-promo .sh-btn-solid:hover,
.sh-btn-solid:hover {
  transform: translateY(-2px);
  background-color: #ea580c !important;
  box-shadow:
    0 0 28px rgba(249, 115, 22, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.25) !important;
  color: #ffffff !important;
}

.sh-promo .sh-btn-solid:hover span,
.sh-btn-solid:hover span {
  color: #ffffff !important;
}

.sh-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.85rem;
  border: 2px solid rgba(218, 192, 163, 0.65);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sh-gold) !important;
  background: transparent;
  text-decoration: none !important;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.sh-btn-ghost:hover {
  transform: scale(1.03);
  border-color: var(--sh-orange);
  color: var(--sh-white) !important;
  background: rgba(249, 115, 22, 0.12);
}

/* —— Compare PK wall —— */
.sh-compare {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: var(--sh-white);
}

.sh-compare__head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.sh-compare__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-head, Inter, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--sh-navy);
}

.sh-compare__head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted, #64748b);
}

.sh-compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1060px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .sh-compare__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }
}

.sh-pk-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 44, 89, 0.1);
}

.sh-pk-card--bad {
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e8edf3 100%);
}

.sh-pk-card--good {
  border: 2px solid rgba(15, 44, 89, 0.15);
  background: linear-gradient(180deg, #f0fdf9 0%, #ecfdf5 40%, #fff 100%);
}

.sh-pk-card__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 1.2rem 1.35rem;
  font-family: var(--font-head, Inter, sans-serif);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.sh-pk-card--bad .sh-pk-card__title {
  color: #991b1b;
  background: linear-gradient(90deg, #fee2e2, #fecaca);
  border-bottom: 1px solid #fecaca;
}

.sh-pk-card--good .sh-pk-card__title {
  color: var(--sh-white);
  background: linear-gradient(105deg, var(--sh-navy), var(--sh-navy-mid));
}

.sh-pk-card__title-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
}

.sh-pk-card__list {
  margin: 0;
  padding: 1.35rem 1.35rem 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.sh-pk-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sh-navy-mid, #1e293b);
  background: rgba(255, 255, 255, 0.75);
}

.sh-pk-card--bad .sh-pk-card__item {
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.sh-pk-card--good .sh-pk-card__item {
  border: 1px solid rgba(15, 44, 89, 0.08);
}

.sh-pk-card__item-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
}

.sh-pk-card--good .sh-pk-card__item strong {
  color: var(--sh-navy);
  font-weight: 800;
}

/* —— Pricing matrix —— */
.sh-pricing {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.sh-pricing__head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.sh-pricing__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-head, Inter, sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--sh-navy);
}

.sh-pricing__head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted, #64748b);
}

.sh-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1060px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .sh-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.sh-price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: var(--sh-white);
  box-shadow: 0 10px 32px rgba(15, 44, 89, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sh-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(15, 44, 89, 0.12);
}

.sh-price-card--featured {
  position: relative;
  border: 2px solid var(--sh-gold);
  box-shadow: 0 16px 44px rgba(15, 44, 89, 0.14);
}

@media (min-width: 768px) {
  .sh-price-card--featured {
    transform: scale(1.04);
  }

  .sh-price-card--featured:hover {
    transform: scale(1.04) translateY(-5px);
  }
}

.sh-price-card--featured::after {
  content: "Popular";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sh-navy);
  background: var(--sh-gold);
}

.sh-price-card__name {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
}

.sh-price-card__amount {
  margin: 0;
  font-family: var(--font-head, Inter, sans-serif);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sh-navy);
}

.sh-price-card__unit {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted, #64748b);
}

.sh-price-card__features {
  margin: 1.25rem 0 0;
  padding: 0;
  flex: 1;
  width: 100%;
  max-width: 17.5rem;
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sh-price-card__features li {
  position: relative;
  padding-left: 1.25rem;
  list-style: none;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted, #64748b);
}

.sh-price-card__features li::marker {
  content: none;
}

.sh-price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  color: #9ca3af;
}

.sh-price-card--featured .sh-price-card__features li::before {
  color: var(--sh-orange);
}

.sh-price-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  width: 100%;
  max-width: 15.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--sh-white) !important;
  background: linear-gradient(180deg, var(--sh-orange), var(--sh-orange-dark));
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sh-price-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
  color: var(--sh-white) !important;
}

.sh-retainer {
  max-width: 52rem;
  margin: 2.5rem auto 0;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px dashed rgba(15, 44, 89, 0.18);
  border-radius: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted, #64748b);
  background: var(--sh-white);
}

.sh-retainer strong {
  color: var(--sh-navy);
}

.sh-retainer a {
  font-weight: 700;
}

/* DS document hub links on service pages */
.svc-ds-hub__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .svc-ds-hub__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.svc-ds-hub__links a {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  font-weight: 600;
  color: var(--sh-navy, #0f2c59);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.svc-ds-hub__links a:hover {
  border-color: var(--sh-orange, #ff6600);
  box-shadow: 0 4px 14px rgba(15, 44, 89, 0.08);
}

.svc-ds-hub__more {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted, #64748b);
}

/* Bottom CTA unchanged from global */
.services-hub .cta-banner {
  text-align: center;
}

@media (max-width: 767px) {
  .sh-promo__actions {
    flex-direction: column;
    width: 100%;
  }

  .sh-btn-solid,
  .sh-btn-ghost {
    width: 100%;
    max-width: 20rem;
  }

  .sh-price-card--featured {
    transform: none;
  }

  .sh-price-card--featured:hover {
    transform: translateY(-5px);
  }
}
