/* Visual upgrade layer for long-form service pages. */
body.service-spotlight-page {
  --service-accent: #00a676;
  --service-bg-soft: rgba(0, 166, 118, 0.2);
  --service-bg-warm: rgba(255, 145, 77, 0.18);
  --service-spotlight-gradient: linear-gradient(
    135deg,
    rgba(0, 33, 71, 0.95),
    rgba(0, 91, 137, 0.9) 50%,
    rgba(0, 166, 118, 0.86)
  );
  --service-highlight-glow: rgba(255, 255, 255, 0.36);

  background:
    radial-gradient(circle at 10% -10%, var(--service-bg-soft), transparent 35%),
    radial-gradient(circle at 90% 0%, var(--service-bg-warm), transparent 30%),
    #f5f8fc;
}

body.service-spotlight-page.service-theme-mail-in {
  --service-accent: #2ad38b;
  --service-bg-soft: rgba(42, 211, 139, 0.24);
  --service-bg-warm: rgba(255, 186, 90, 0.2);
  --service-spotlight-gradient: linear-gradient(125deg, rgba(0, 59, 92, 0.96), rgba(0, 129, 138, 0.9) 48%, rgba(42, 211, 139, 0.88));
}

body.service-spotlight-page.service-theme-hdmi {
  --service-accent: #ff6a3c;
  --service-bg-soft: rgba(255, 106, 60, 0.18);
  --service-bg-warm: rgba(255, 212, 94, 0.2);
  --service-spotlight-gradient: linear-gradient(132deg, rgba(22, 31, 68, 0.97), rgba(134, 43, 65, 0.9) 52%, rgba(255, 106, 60, 0.85));
}

body.service-spotlight-page.service-theme-diagnostics {
  --service-accent: #29b6f6;
  --service-bg-soft: rgba(41, 182, 246, 0.2);
  --service-bg-warm: rgba(124, 77, 255, 0.18);
  --service-spotlight-gradient: linear-gradient(130deg, rgba(9, 37, 76, 0.96), rgba(0, 98, 155, 0.9) 50%, rgba(41, 182, 246, 0.82));
}

body.service-spotlight-page.service-theme-laptop-desktop {
  --service-accent: #00a884;
  --service-bg-soft: rgba(0, 168, 132, 0.2);
  --service-bg-warm: rgba(255, 169, 74, 0.18);
  --service-spotlight-gradient: linear-gradient(132deg, rgba(5, 51, 64, 0.96), rgba(0, 117, 129, 0.9) 48%, rgba(0, 168, 132, 0.84));
}

body.service-spotlight-page.service-theme-upgrades {
  --service-accent: #ff8b1a;
  --service-bg-soft: rgba(255, 139, 26, 0.18);
  --service-bg-warm: rgba(255, 229, 91, 0.2);
  --service-spotlight-gradient: linear-gradient(131deg, rgba(59, 34, 80, 0.96), rgba(156, 62, 33, 0.9) 46%, rgba(255, 139, 26, 0.86));
}

body.service-spotlight-page.service-theme-optimization {
  --service-accent: #00b8d4;
  --service-bg-soft: rgba(0, 184, 212, 0.2);
  --service-bg-warm: rgba(0, 229, 255, 0.14);
  --service-spotlight-gradient: linear-gradient(130deg, rgba(0, 42, 74, 0.97), rgba(0, 96, 134, 0.9) 52%, rgba(0, 184, 212, 0.82));
}

body.service-spotlight-page.service-theme-custom-builds {
  --service-accent: #f0c419;
  --service-bg-soft: rgba(240, 196, 25, 0.2);
  --service-bg-warm: rgba(255, 120, 74, 0.16);
  --service-spotlight-gradient: linear-gradient(129deg, rgba(12, 21, 44, 0.97), rgba(84, 47, 122, 0.9) 50%, rgba(240, 196, 25, 0.82));
}

body.service-spotlight-page.service-theme-security {
  --service-accent: #ef5350;
  --service-bg-soft: rgba(239, 83, 80, 0.18);
  --service-bg-warm: rgba(255, 138, 101, 0.14);
  --service-spotlight-gradient: linear-gradient(132deg, rgba(34, 18, 52, 0.97), rgba(94, 33, 58, 0.92) 49%, rgba(239, 83, 80, 0.84));
}

body.service-spotlight-page.service-theme-data-recovery {
  --service-accent: #43a047;
  --service-bg-soft: rgba(67, 160, 71, 0.2);
  --service-bg-warm: rgba(38, 198, 218, 0.16);
  --service-spotlight-gradient: linear-gradient(128deg, rgba(8, 56, 48, 0.97), rgba(19, 104, 86, 0.9) 50%, rgba(67, 160, 71, 0.84));
}

body.service-spotlight-page .services {
  padding: 40px 0 56px !important;
}

body.service-spotlight-page .services .container {
  max-width: 1100px;
}

.service-spotlight {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(22px, 3vw, 38px);
  margin-bottom: 28px;
  background: var(--service-spotlight-gradient);
  color: #ffffff;
  box-shadow: 0 24px 45px rgba(2, 18, 40, 0.22);
  animation: serviceFadeIn 0.6s ease-out;
}

.service-spotlight::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  top: -150px;
  background: radial-gradient(circle, var(--service-highlight-glow), transparent 68%);
  pointer-events: none;
}

.service-spotlight::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 64%);
  pointer-events: none;
}

.service-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.service-spotlight h1 {
  margin: 0;
  color: #fff;
  line-height: 1.12;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.service-lead {
  margin: 14px 0 0;
  max-width: 75ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.service-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 20px;
}

.service-meta-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}

.service-meta-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.service-meta-label {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
}

.service-spotlight-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-spotlight .cta-button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.service-spotlight .cta-button.secondary:hover,
.service-spotlight .cta-button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.service-copy {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(18px, 2.4vw, 32px);
  box-shadow: 0 16px 32px rgba(15, 30, 50, 0.08);
  border-top: 4px solid var(--service-accent);
}

.service-copy h2 {
  margin-top: 26px;
  margin-bottom: 12px;
  border-left: 5px solid var(--service-accent);
  padding-left: 12px;
  color: #0c223f;
}

.service-copy p {
  line-height: 1.8;
  color: #24354f;
}

.service-copy ul,
.service-copy ol {
  margin: 0;
  padding-left: 22px;
  color: #24354f;
}

.service-copy li {
  margin-bottom: 9px;
  line-height: 1.7;
}

.service-copy > p:last-child {
  text-align: center;
}

@keyframes serviceFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .service-copy {
    border-radius: 16px;
    padding: 16px;
  }

  .service-spotlight {
    border-radius: 16px;
  }
}
