/* =====================
   SERVICES HERO
   ===================== */
.services-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.services-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--fg);
}
.services-intro {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 8px;
}
.service-card .btn-primary {
  align-self: flex-start;
}

/* =====================
   SERVICES PROCESS
   ===================== */
.services-process {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.services-process h2 { color: var(--fg); margin-bottom: 12px; }

/* =====================
   SERVICES PRICING
   ===================== */
.services-pricing {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.services-pricing h2 { color: var(--fg); margin-bottom: 12px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-card.featured {
  border-color: rgba(245,158,11,0.35);
  box-shadow: 0 0 0 1px rgba(245,158,11,0.15);
}
.pricing-tier {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-features em {
  font-style: normal;
  color: var(--accent);
}
.pricing-card .btn-primary {
  margin-top: 8px;
  justify-content: center;
}
.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
}
.pricing-note strong { color: var(--fg); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-hero { padding: 60px 0 40px; }
  .service-card { padding: 24px; }
  .pricing-card { padding: 24px; }
  .services-cta-row { flex-direction: column; align-items: stretch; }
}
.services-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}