/* ============================================================
   services page — extends style.css tokens
   ============================================================ */

.services-hero,
.services-pricing {
  scroll-margin-top: 4rem;
}

.services-hero {
  padding: var(--space-2xl) 0 var(--space-2xl);
  max-width: 680px;
}

.services-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.3;
  color: var(--sumi);
  margin-bottom: var(--space-lg);
}

.services-sub {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--mid-band);
  max-width: 560px;
}

/* sections */

.services-problem,
.services-offer,
.services-pricing,
.services-how,
.services-honest {
  padding: var(--space-2xl) 0;
  max-width: 800px;
}

.services-problem h2,
.services-offer h2,
.services-pricing h2,
.services-how h2,
.services-honest h2 {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.services-problem p,
.services-honest p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--dark-band);
  margin-bottom: var(--space-md);
}

/* offer grid */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.offer-item h3 {
  font-size: 0.85rem;
  color: var(--tetsu);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-item p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--dark-band);
}

.offer-note {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--mid-band);
  border-top: 1px solid var(--lightest-band);
  padding-top: var(--space-lg);
}

/* pricing grid */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.pricing-card {
  border: 1px solid var(--lightest-band);
  border-radius: 2px;
  padding: var(--space-xl);
}

.pricing-card.featured {
  border-color: var(--tetsu);
}

.pricing-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.pricing-desc {
  font-size: 0.75rem;
  color: var(--mid-band);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.pricing-amount {
  margin-bottom: var(--space-xs);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sumi);
}

.period {
  font-size: 0.8rem;
  color: var(--mid-band);
}

.pricing-setup {
  font-size: 0.75rem;
  color: var(--dark-band);
  margin-bottom: var(--space-lg);
}

.pricing-card ul {
  list-style: none;
}

.pricing-card li {
  font-size: 0.8rem;
  color: var(--dark-band);
  line-height: 1.6;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--lightest-band);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--mid-band);
  line-height: 1.7;
}

/* how it works */

.how-steps {
  list-style: none;
  counter-reset: step;
}

.how-steps li {
  counter-increment: step;
  list-style: none;
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--lightest-band);
}

.how-steps li:last-child {
  border-bottom: none;
}

.how-steps li::before {
  content: counter(step);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lightest-band);
  flex-shrink: 0;
  width: 2rem;
}

.how-steps strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: var(--space-xs);
}

.how-steps span {
  font-size: 0.8rem;
  color: var(--dark-band);
  line-height: 1.7;
}

/* ============================================================
   responsive
   ============================================================ */

@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .how-steps li {
    flex-direction: column;
    gap: var(--space-sm);
  }
}
