/* ═══════════════════════════════════════════════════════════════
   ABC REPAIR — services.css
   ═══════════════════════════════════════════════════════════════ */

.services-hero {
  padding: 140px 56px 96px;
  position: relative;
  z-index: 2;
}

.services-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #73BE9E;
  border: 1px solid rgba(115,190,158,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  background: rgba(115,190,158,0.04);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0D8A68;
  box-shadow: 0 0 8px rgba(13,138,104,0.8);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(13,138,104,0.8); }
  50%       { box-shadow: 0 0 16px rgba(13,138,104,1), 0 0 28px rgba(115,190,158,0.4); }
}

.service-category {
  padding: 80px 56px;
  position: relative;
  z-index: 2;
}

.service-category-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.category-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(100px, 12vw, 160px);
  font-weight: 800;
  color: rgba(255,255,255,0.015);
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.category-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  background: linear-gradient(135deg, #73BE9E, #0D8A68);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.category-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.category-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(115,190,158,0.3), rgba(13,138,104,0.2), transparent);
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.category-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(115,190,158,0.6), transparent);
  transform: translateX(-100%);
  animation: shimmerDiv 3s ease infinite;
}

@keyframes shimmerDiv {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.svc-card {
  padding: 28px 28px 24px;
}

.svc-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

.category-cta {
  margin-top: 32px;
}

@keyframes spinComet { to { transform: rotate(360deg); } }
.anim-desktop:hover svg { animation: spinComet 1.4s linear infinite; }

@keyframes wifiPulse { 0%,100%{opacity:.2;} 50%{opacity:1;} }
.wifi-arc:nth-child(1) { animation: wifiPulse 1.6s ease-in-out infinite; }
.wifi-arc:nth-child(2) { animation: wifiPulse 1.6s ease-in-out 0.3s infinite; }
.wifi-arc:nth-child(3) { animation: wifiPulse 1.6s ease-in-out 0.6s infinite; }

@keyframes eqAnim { 0%{height:4px;} 100%{height:18px;} }
.eq-bar { animation: eqAnim 0.7s ease-in-out infinite alternate; }
.eq-bar:nth-child(2) { animation-delay: .1s; }
.eq-bar:nth-child(3) { animation-delay: .2s; }
.eq-bar:nth-child(4) { animation-delay: .15s; }
.eq-bar:nth-child(5) { animation-delay: .05s; }

@keyframes rSpin { to { transform: rotate(360deg); } }
@keyframes rPing  { 0%{transform:scale(.3);opacity:.8;} 100%{transform:scale(1.4);opacity:0;} }
.radar-sweep-el { animation: rSpin 2s linear infinite; }
.radar-ping     { animation: rPing 2s ease-out infinite; }

.corner-tl-code {
  position: absolute; top: 5px; left: 7px;
  font-size: 11px; color: #73BE9E;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0; transition: opacity .2s;
}
.corner-br-code {
  position: absolute; bottom: 5px; right: 7px;
  font-size: 11px; color: #73BE9E;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0; transition: opacity .2s;
}
.anim-web:hover .corner-tl-code,
.anim-web:hover .corner-br-code { opacity: 1; }

@media (max-width: 768px) {
  .services-hero    { padding: 120px 24px 64px; }
  .service-category { padding: 64px 24px; }
  .services-cards-grid { grid-template-columns: 1fr; }
}
