/* ─── SERVICES PAGE STYLES ─── */

.container { padding: 2rem; }

/* ─── HERO ─── */
.sv-hero {
  padding: 8rem 2rem 5rem; border-bottom: 1px solid var(--border);
}
.sv-hero .container { max-width: var(--max-w); }
.sv-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.4rem); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 1.5rem; max-width: 680px;
}
.sv-hero-sub {
  color: var(--text-secondary); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 0; max-width: 560px;
}

/* ─── SECTIONS ─── */
.sv-section { padding: 6rem 2rem; border-bottom: 1px solid var(--border); }
.sv-section.alt { background: var(--bg-alt); }

.sv-section-header { margin-bottom: 3rem; }
.sv-section-header h2 {
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.6rem;
}
.sv-section-header p {
  font-size: 0.95rem; color: var(--text-secondary);
  max-width: 540px; line-height: 1.7;
}

/* ─── PROSE ─── */
.sv-prose { margin-top: 1.5rem; }
.sv-prose p {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 1rem; max-width: 640px;
}
.sv-prose p:last-child { margin-bottom: 0; }
.sv-prose strong { color: var(--text); }

/* ─── SERVICE GRID ─── */
.sv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-top: 2rem;
}
.sv-card {
  background: var(--bg); padding: 2rem;
  display: flex; flex-direction: column; transition: background 0.25s;
}
.sv-card:hover { background: var(--bg-alt); }
.sv-card-num {
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--text-muted); font-weight: 500;
  margin-bottom: 0.8rem; letter-spacing: 0.03em;
}
.sv-card-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.sv-card-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── STEPS ─── */
.sv-steps { display: flex; flex-direction: column; margin-top: 1.5rem; }
.sv-step {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border-light);
}
.sv-step:last-child { border-bottom: none; }
.sv-step-label {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--text-muted); font-weight: 500; padding-top: 0.2rem;
}
.sv-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.sv-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; max-width: 520px; }

/* ─── TWO-COL DETAIL ─── */
.sv-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 2rem;
}
.sv-detail h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; }
.sv-detail-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.sv-detail-list li { font-size: 0.88rem; color: var(--text-secondary); padding-left: 1rem; position: relative; }
.sv-detail-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted);
}

/* ─── HIGHLIGHT ─── */
.sv-highlight {
  padding: 2.5rem 0; border-top: 1px solid var(--border); margin-top: 2rem;
}
.sv-highlight-text {
  font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.6rem; max-width: 520px;
}
.sv-highlight-sub { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; max-width: 480px; }

/* ─── FAQ ─── */
.sv-faq-list { margin-top: 2.5rem; }
.sv-faq-item { border-bottom: 1px solid var(--border); }
.sv-faq-item:first-child { border-top: 1px solid var(--border); }
.sv-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  text-align: left; padding: 1.2rem 0; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
}
.sv-faq-q::after { content: '\25BE'; font-size: 0.85rem; color: var(--text-muted); transition: transform 0.25s; }
.sv-faq-item.open .sv-faq-q::after { transform: rotate(180deg); }
.sv-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.sv-faq-item.open .sv-faq-a { max-height: 200px; }
.sv-faq-a-inner { padding-bottom: 1.2rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ─── CTA ─── */
.sv-cta-section {
  background: var(--bg); border-bottom: 1px solid var(--border); padding: 6rem 2rem;
}
.sv-cta-inner { max-width: var(--max-w); margin: 0 auto; }
.sv-cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 1rem; max-width: 520px; line-height: 1.15;
}
.sv-cta-inner p {
  font-size: 0.95rem; color: var(--text-secondary);
  max-width: 480px; line-height: 1.7; margin-bottom: 2rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .container { padding: 1rem; }
  .sv-hero { padding: 4rem 1.25rem; }
  .sv-section { padding: 4rem 1.25rem; }
  .sv-grid { grid-template-columns: 1fr; }
  .sv-detail { grid-template-columns: 1fr; gap: 2rem; }
  .sv-step { grid-template-columns: 1fr; gap: 0.5rem; }
}
