body { background-color: var(--bg-dark-purple); }

/* --- Hero --- */
.hero-section {
  background: linear-gradient(rgba(32, 5, 32, 0.7), rgba(32, 5, 32, 0.9)),
    url("../../../images/external/images-unsplash-com-photo-1547658719-da2b51169166-6a8fd36cef2b.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.accent-text {
  color: var(--accent);
}

.hero-section h1 span.accent-text {
  font-size: 0.72em;
}

/* --- Service Cards (sub-page variant) --- */
.service-card-alt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card-alt:hover {
  border-color: rgba(249, 181, 34, 0.4);
  transform: translateY(-5px);
}

/* --- Tech Pills --- */
.tech-pill {
  background: var(--deep-purple-page);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  transition: 0.3s;
}

.tech-pill:hover {
  border-color: var(--accent);
  background: rgba(249, 181, 34, 0.1);
  color: var(--accent);
}

/* --- Spec Icon Box --- */
.spec-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(249, 181, 34, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 20px;
}
