/* Service page specific styles */
.service-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}
.service-hero .breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.service-hero .breadcrumb a { color: var(--text-muted); border-bottom: 1px dashed var(--text-faint); padding-bottom: 1px; }
.service-hero .breadcrumb a:hover { color: var(--accent); border-color: var(--accent); }
.service-hero .breadcrumb-sep { margin: 0 10px; color: var(--text-faint); }
.service-hero h1 { margin-bottom: 24px; font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
.service-hero p.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 720px; margin: 0 auto; line-height: 1.55; }
.service-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

.service-content { max-width: 820px; margin: 0 auto; padding: 56px 0 100px; }
.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 56px 0 20px;
  font-variation-settings: "opsz" 144;
}
.service-content h2:first-child { margin-top: 0; }
.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
}
.service-content p { color: var(--text); font-size: 1.05rem; line-height: 1.7; margin-bottom: 18px; }
.service-content ul { margin: 16px 0 24px; padding-left: 0; list-style: none; }
.service-content li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}
.service-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-weight: 700;
}
.service-content li:last-child { border-bottom: none; }
.service-content strong { color: var(--text); font-weight: 600; }
.service-content code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--bg-soft);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--accent);
}
.service-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 640px) { .service-feature-grid { grid-template-columns: 1fr; } }
.service-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.service-feature h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.service-feature p { font-size: 0.94rem; color: var(--text-muted); margin: 0; }

.service-cta-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 56px 0 0;
}
.service-cta-box h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.service-cta-box p { color: var(--text-muted); margin-bottom: 24px; }
.service-cta-box-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 640px) {
  .service-content { padding: 32px 0 60px; }
  .service-cta-box { padding: 28px 20px; }
}
