/* ============================================================
   Niyutam — Services Page
   ============================================================ */

:root {
  --sp-bg: #0B0F1A;
  --sp-accent: #C8FF00;
  --sp-text: #ffffff;
  --sp-muted: rgba(255, 255, 255, 0.6);
  --sp-card-bg: rgba(255, 255, 255, 0.03);
  --sp-card-border: rgba(255, 255, 255, 0.08);
}

body {
  background-color: var(--sp-bg);
  color: var(--sp-text);
  font-family: 'Satoshi', sans-serif;
}

h1, h2, h3 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  margin: 0;
  color: var(--sp-text);
  letter-spacing: -0.02em;
}

/* ── Hero Section ────────────────────────────────────────── */
.sp-hero {
  position: relative;
  padding: 220px 0 140px;
  text-align: center;
  overflow: hidden;
  background: var(--sp-bg);
}

.sp-hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.08), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.sp-hero__inner {
  position: relative;
  z-index: 10;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}

.sp-hero__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sp-accent);
  margin-bottom: 24px;
}

.sp-hero__heading {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.sp-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sp-muted);
  margin-bottom: 40px;
}

.sp-hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border-radius: 8px;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sp-btn--primary {
  background: var(--sp-accent);
  color: var(--sp-bg);
}

.sp-btn--primary:hover {
  background: #d9ff33;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(200, 255, 0, 0.2);
}

.sp-btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--sp-text);
  border: 1px solid var(--sp-card-border);
}

.sp-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Grid Section ────────────────────────────────────────── */
.sp-grid-section {
  padding: 0 0 140px;
  position: relative;
  z-index: 10;
}

.sp-grid-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}

/* Standard Cards */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sp-card {
  background: var(--sp-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--sp-card-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 255, 0, 0.4);
  box-shadow: 0 12px 40px rgba(200, 255, 0, 0.08);
}

.sp-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.sp-card:hover .sp-card__icon {
  transform: scale(1.1);
}

.sp-card__title {
  font-size: 22px;
  margin-bottom: 12px;
}

.sp-card__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sp-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.sp-card__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--sp-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: all 0.2s ease;
}

.sp-card:hover .sp-card__link {
  color: var(--sp-accent);
  transform: translateX(4px);
}

/* AI Highlight Card */
.sp-card--highlight {
  background: #0a0a0f;
  border-color: rgba(200, 255, 0, 0.2);
  margin-bottom: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sp-card--highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.08), transparent 60%);
  pointer-events: none;
}

.sp-card--highlight .sp-card__icon--neon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(34%) saturate(838%) hue-rotate(24deg) brightness(104%) contrast(105%);
}

.sp-card__badge {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(200, 255, 0, 0.1);
  color: var(--sp-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(200, 255, 0, 0.2);
  letter-spacing: 1px;
}

/* ── CTA Section ─────────────────────────────────────────── */
.sp-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: #080b13;
  border-top: 1px solid var(--sp-card-border);
  overflow: hidden;
}

.sp-cta__glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.05), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.sp-cta__inner {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}

.sp-cta__heading {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.sp-cta__sub {
  font-size: 18px;
  color: var(--sp-muted);
  margin-bottom: 32px;
}

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

@media (max-width: 768px) {
  .sp-grid {
    grid-template-columns: 1fr;
  }
  
  .sp-hero__actions {
    flex-direction: column;
  }
}
