/* ---- Services Hero ---- */
.services-hero {
  padding-top: 180px;
  padding-bottom: 120px;
  background: var(--bg-primary);
}

.services-hero__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.services-hero__title {
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 60px;
}

.services-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.services-hero__lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .services-hero__split { grid-template-columns: 1fr; gap: 40px; }
}

.page-hero__line {
  width: 0;
  height: 1.5px;
  background: var(--text-primary);
  margin-top: 20px;
}

.text-reveal {
  overflow: hidden;
  display: block;
}

.text-reveal__inner {
  display: block;
  transform: translateY(110%);
}

/* ---- Category Blocks ---- */
.category-block {
  border-top: 1px solid var(--border);
}

.category-block.alternate {
  background: var(--bg-secondary);
}

.category-block__header {
  margin-bottom: 80px;
}

.category-block__header h2{
  max-width: 800px;
}

.category-block__header .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-primary);
  margin-bottom: 24px;
}

.category-block__summary {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 24px;
  max-width: 1100px;
  text-align: justify;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.detail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.detail-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .category-block__header { margin-bottom: 48px; }
  .category-block__summary { font-size: 1.2rem; }
  .service-details-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Process Section ---- */
.process-section {
  background: var(--bg-secondary);
}

/* ---- Pricing CTA ---- */
.pricing-cta {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 48px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.pricing-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0,0,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-cta h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 20px;
}
.head-sub {
  font-size: clamp(1.2rem, 3vw, 3rem);
  margin-bottom: 20px;
}

.pricing-cta p {
  color: var(--text-secondary);
  max-width: 1020px;
  margin-inline: auto;
  margin-bottom: 40px;
}
