/* ===== SERVICE PAGE STYLES ===== */

/* Hero */
.sp-hero {
  padding: calc(var(--nav-h) + 60px) 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.sp-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0;
}

.sp-hero-label a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-hero-label a:hover {
  color: #fff;
}

.sp-hero-label .sep {
  color: var(--border);
  font-weight: 400;
}

.sp-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 20px;
}

.sp-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Body / Grid */
.sp-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

.sp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Content column */
.sp-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #fff;
}

.sp-content h2:first-child {
  margin-top: 0;
}

.sp-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.sp-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 0;
}

.sp-content ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.sp-content ul li::before {
  content: '→';
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-content .highlight-box {
  background: rgba(155, 143, 232, 0.1);
  border: 1px solid rgba(155, 143, 232, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.sp-content .highlight-box p {
  margin-bottom: 0;
}

.sp-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.sp-content table th {
  text-align: left;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.sp-content table td {
  padding: 12px 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

.sp-content table td:first-child {
  color: #fff;
  font-weight: 500;
}

.sp-content table tr:last-child td {
  border-bottom: none;
}

.sp-content .steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.sp-content .step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sp-content .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(155, 143, 232, 0.2);
  border: 1px solid rgba(155, 143, 232, 0.4);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-content .step-body strong {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.sp-content .step-body span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Compare table */
.sp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.sp-compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.sp-compare-col.good {
  border-color: rgba(155, 143, 232, 0.4);
}

.sp-compare-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sp-compare-col.good h4 {
  color: var(--primary-light);
}

.sp-compare-col.bad h4 {
  color: #f87171;
}

.sp-compare-col ul {
  margin-bottom: 0;
}

/* Sidebar */
.sp-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.sp-cta-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.sp-cta-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sp-cta-card .btn-primary {
  width: 100%;
  justify-content: center;
  display: flex;
}

.sp-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.sp-price-card h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.sp-price-row:last-child {
  border-bottom: none;
}

.sp-price-val {
  font-weight: 700;
  color: #fff;
}

.sp-services-nav {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.sp-services-nav h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding: 0 4px;
}

.sp-services-nav a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.sp-services-nav a:hover,
.sp-services-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.sp-services-nav a.active {
  color: var(--primary-light);
}

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

  .sp-sidebar {
    position: static;
  }

  .sp-hero {
    padding: calc(var(--nav-h) + 40px) 20px 40px;
  }

  .sp-body {
    padding: 0 20px 80px;
  }

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