/* ===== SHARED SERVICE DETAIL PAGE STYLES ===== */

/* Hero */
.sp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
  background: #0a0a0f;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sp-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(230, 57, 70, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(66, 165, 245, 0.06), transparent),
    radial-gradient(ellipse 50% 60% at 50% 20%, rgba(171, 71, 188, 0.05), transparent);
}

.sp-hero-particles {
  position: absolute;
  inset: 0;
}

.sp-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.4);
  animation: spParticleFloat 8s ease-in-out infinite;
}

.sp-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.sp-particle:nth-child(2) { top: 25%; left: 85%; animation-delay: 1s; animation-duration: 9s; background: rgba(66,165,245,0.4); }
.sp-particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; animation-duration: 6s; background: rgba(102,187,106,0.4); }
.sp-particle:nth-child(4) { top: 70%; left: 75%; animation-delay: 3s; animation-duration: 8s; }
.sp-particle:nth-child(5) { top: 40%; left: 50%; animation-delay: 1.5s; animation-duration: 10s; background: rgba(171,71,188,0.4); }
.sp-particle:nth-child(6) { top: 80%; left: 40%; animation-delay: 0.5s; animation-duration: 7.5s; background: rgba(255,152,0,0.4); }

@keyframes spParticleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(30px, -20px) scale(1.5); opacity: 0.8; }
  50% { transform: translate(-10px, -40px) scale(1); opacity: 0.3; }
  75% { transform: translate(20px, 10px) scale(1.8); opacity: 0.7; }
}

.sp-hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}

/* Hero content */
.sp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.sp-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
  animation: spFadeUp 0.6s ease both;
}

.sp-hero-breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.sp-hero-breadcrumb a:hover {
  color: var(--accent-red);
}

.sp-hero-breadcrumb svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
}

.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  animation: spFadeUp 0.7s ease both;
}

.sp-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.5);
  animation: spPulse 2s ease-in-out infinite;
}

@keyframes spPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.sp-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  animation: spFadeUp 0.8s 0.1s ease both;
}

.sp-highlight {
  font-weight: 700;
  font-style: italic;
  color: #e63946;
}

.sp-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 40px;
  animation: spFadeUp 0.8s 0.2s ease both;
}

.sp-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: spFadeUp 0.8s 0.3s ease both;
}

.sp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  animation: spFadeUp 0.8s 0.4s ease both;
}

.sp-hero-stat {
  text-align: center;
}

.sp-hero-stat-value {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: -0.03em;
}

.sp-hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@keyframes spFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION HEADERS ===== */
.sp-section {
  padding: 120px 0;
}

.sp-section-alt {
  background: var(--bg-secondary);
}

.sp-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 80px;
}

.sp-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-red);
  margin-bottom: 16px;
}

.sp-section-header h2 {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.sp-section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.sp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sp-service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 32px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(40px);
}

.sp-service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sp-service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sp-service-card-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.sp-service-card:hover .sp-service-card-glow {
  opacity: 0.1;
}

.sp-glow-red { background: #e63946; }
.sp-glow-blue { background: #42a5f5; }
.sp-glow-green { background: #66bb6a; }
.sp-glow-orange { background: #ff9800; }
.sp-glow-purple { background: #ab47bc; }
.sp-glow-cyan { background: #26c6da; }
.sp-glow-pink { background: #ec407a; }
.sp-glow-teal { background: #26a69a; }
.sp-glow-amber { background: #ffb300; }
.sp-glow-indigo { background: #5c6bc0; }

.sp-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.sp-service-icon svg {
  width: 26px;
  height: 26px;
}

.sp-icon-red {
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  color: #e63946;
}

.sp-icon-blue {
  background: rgba(66, 165, 245, 0.08);
  border: 1px solid rgba(66, 165, 245, 0.15);
  color: #42a5f5;
}

.sp-icon-green {
  background: rgba(102, 187, 106, 0.08);
  border: 1px solid rgba(102, 187, 106, 0.15);
  color: #66bb6a;
}

.sp-icon-orange {
  background: rgba(255, 152, 0, 0.08);
  border: 1px solid rgba(255, 152, 0, 0.15);
  color: #ff9800;
}

.sp-icon-purple {
  background: rgba(171, 71, 188, 0.08);
  border: 1px solid rgba(171, 71, 188, 0.15);
  color: #ab47bc;
}

.sp-icon-cyan {
  background: rgba(38, 198, 218, 0.08);
  border: 1px solid rgba(38, 198, 218, 0.15);
  color: #26c6da;
}

.sp-icon-pink {
  background: rgba(236, 64, 122, 0.08);
  border: 1px solid rgba(236, 64, 122, 0.15);
  color: #ec407a;
}

.sp-icon-teal {
  background: rgba(38, 166, 154, 0.08);
  border: 1px solid rgba(38, 166, 154, 0.15);
  color: #26a69a;
}

.sp-icon-amber {
  background: rgba(255, 179, 0, 0.08);
  border: 1px solid rgba(255, 179, 0, 0.15);
  color: #ffb300;
}

.sp-icon-indigo {
  background: rgba(92, 107, 192, 0.08);
  border: 1px solid rgba(92, 107, 192, 0.15);
  color: #5c6bc0;
}

.sp-service-card:hover .sp-service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.sp-service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.sp-service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sp-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sp-service-tags span {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-primary);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.sp-service-card:hover .sp-service-tags span {
  border-color: rgba(255,255,255,0.1);
  color: var(--text-secondary);
}

/* ===== STATS ===== */
.sp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sp-stat-card {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.sp-stat-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sp-stat-card:hover {
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.sp-stat-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.sp-stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sp-stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== PROCESS ===== */
.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.sp-process-card {
  position: relative;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(30px);
}

.sp-process-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sp-process-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.sp-process-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}

.sp-process-card:hover .sp-process-num {
  color: rgba(230, 57, 70, 0.08);
}

.sp-process-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sp-process-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-red);
}

.sp-process-card h4 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.sp-process-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== TOOLS / PLATFORMS ===== */
.sp-tools-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.sp-tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.sp-tool-chip:hover {
  border-color: rgba(230, 57, 70, 0.3);
  background: rgba(230, 57, 70, 0.06);
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.12);
}

.sp-tool-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ===== FAQ ===== */
.sp-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sp-faq-item:hover {
  border-color: var(--border-hover);
}

.sp-faq-item.active {
  border-color: rgba(230, 57, 70, 0.2);
}

.sp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s ease;
}

.sp-faq-question:hover {
  color: var(--accent-red);
}

.sp-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sp-faq-item.active .sp-faq-icon {
  background: rgba(230, 57, 70, 0.1);
  transform: rotate(45deg);
}

.sp-faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
}

.sp-faq-item.active .sp-faq-icon svg {
  color: var(--accent-red);
}

.sp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.sp-faq-item.active .sp-faq-answer {
  max-height: 300px;
}

.sp-faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA ===== */
.sp-cta {
  padding: 120px 0;
}

.sp-cta-box {
  position: relative;
  text-align: center;
  padding: 80px 60px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.sp-cta-box.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sp-cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(230,57,70,0.12), transparent 70%);
  pointer-events: none;
}

.sp-cta-box h2 {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.sp-cta-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.sp-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FEATURES LIST (alternate layout) ===== */
.sp-features-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.sp-feature-row.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sp-feature-row:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.sp-feature-row-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-feature-row-icon svg {
  width: 24px;
  height: 24px;
}

.sp-feature-row-content h4 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.sp-feature-row-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sp-hero-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sp-hero-title {
    font-size: 2.5rem;
  }

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

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

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

  .sp-section-header h2,
  .sp-cta-box h2 {
    font-size: 2rem;
  }

  .sp-cta-box {
    padding: 50px 30px;
  }

  .sp-hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .sp-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .sp-feature-row {
    flex-direction: column;
    gap: 16px;
  }
}

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

  .sp-tool-chip {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .sp-hero {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .sp-hero-title {
    font-size: 2rem;
  }

  .sp-hero-sub {
    font-size: 0.95rem;
  }

  .sp-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .sp-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .sp-section {
    padding: 60px 16px;
  }

  .sp-section-header h2 {
    font-size: 1.6rem;
  }

  .sp-section-header p {
    font-size: 0.9rem;
  }

  .sp-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sp-service-card {
    padding: 24px 20px;
  }

  .sp-service-icon {
    width: 48px;
    height: 48px;
  }

  .sp-service-card h3 {
    font-size: 1.1rem;
  }

  .sp-service-card p {
    font-size: 0.85rem;
  }

  .sp-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sp-process-card {
    padding: 20px;
  }

  .sp-process-num {
    font-size: 2.5rem;
  }

  .sp-process-card h4 {
    font-size: 1rem;
  }

  .sp-process-card p {
    font-size: 0.85rem;
  }

  .sp-feature-row {
    flex-direction: column;
    gap: 16px;
  }

  .sp-feature-item {
    font-size: 0.85rem;
  }

  .sp-cta-box {
    padding: 40px 24px;
  }

  .sp-cta-box h2 {
    font-size: 1.6rem;
  }

  .sp-cta-box p {
    font-size: 0.9rem;
  }

  .sp-cta-actions {
    flex-direction: column;
  }

  .sp-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== LARGE MOBILE / SMALL TABLET (481px - 600px) ===== */
@media (min-width: 481px) and (max-width: 600px) {
  .sp-hero-title {
    font-size: 2.5rem;
  }

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

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

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

/* ===== TABLET (601px - 768px) ===== */
@media (min-width: 601px) and (max-width: 768px) {
  .sp-hero-title {
    font-size: 3rem;
  }

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

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

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

/* ===== TABLET LANDSCAPE (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .sp-hero-title {
    font-size: 3.5rem;
  }

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

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

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

/* ===== ACCESSIBILITY & TOUCH ===== */
@media (hover: none) and (pointer: coarse) {
  .sp-service-card:hover {
    transform: none;
  }

  .sp-service-card:active {
    transform: scale(0.98);
  }

  .sp-process-card:hover {
    transform: none;
  }

  .sp-process-card:active {
    transform: scale(0.98);
  }

  .sp-tool-chip:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-color);
  }

  .sp-tool-chip:active {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--accent-red);
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .sp-hero-orb,
  .sp-grid-line::after,
  .sp-service-icon,
  .sp-process-num {
    animation: none !important;
  }

  .sp-service-card,
  .sp-process-card {
    transition: none !important;
  }
}
