/* Shared styles for /services/* landing pages */
.prose-service { color: rgba(255,255,255,0.78); line-height: 1.75; }
.prose-service p { margin-bottom: 1rem; }
.prose-service p:last-child { margin-bottom: 0; }
.prose-service h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 2rem 0 0.75rem;
}
.prose-service h2:first-child { margin-top: 0; }
[data-theme="light"] .prose-service { color: rgba(6,15,26,0.82); }
[data-theme="light"] .prose-service h2 { color: #060f1a; }

.info-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
}
.info-card {
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}
.info-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff5200;
  margin-bottom: 0.75rem;
}
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
[data-theme="light"] .info-card li { color: rgba(6,15,26,0.78); }
.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff5200;
}

.cta-panel {
  border-radius: 1.25rem;
  border: 1px solid rgba(255,82,0,0.45);
  background: linear-gradient(135deg, rgba(255,82,0,0.12) 0%, rgba(11,31,56,0.6) 100%);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(255,82,0,0.15);
}
[data-theme="light"] .cta-panel {
  background: linear-gradient(135deg, rgba(255,82,0,0.08) 0%, rgba(232,238,245,0.95) 100%);
}

.sticky-cta {
  position: sticky;
  bottom: 1rem;
  z-index: 40;
  margin-top: 1.5rem;
}
.sticky-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,82,0,0.5);
  background: rgba(6,15,26,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
[data-theme="light"] .sticky-cta-inner {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 40px rgba(11,31,56,0.15);
}

.faq-item { border-bottom: 1px solid var(--border-subtle); padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.5rem;
}
[data-theme="light"] .faq-q { color: #060f1a; }
.faq-a { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.65; }
[data-theme="light"] .faq-a { color: rgba(6,15,26,0.75); }

.breadcrumb { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover { color: #ff5200; }
[data-theme="light"] .breadcrumb { color: rgba(6,15,26,0.5); }
[data-theme="light"] .breadcrumb a { color: rgba(6,15,26,0.65); }

.related-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.related-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid var(--border-subtle);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.15s, color 0.15s;
}
.related-links a:hover { border-color: #ff5200; color: #ff5200; }
[data-theme="light"] .related-links a { color: rgba(6,15,26,0.7); }
