/* RKOps — Service Page Styles
   Extends style.css for service landing page components
   (process steps, comparison grids, use cases, breadcrumbs, related cards) */

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--teal);
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 6px;
  color: var(--muted);
}

.breadcrumb span:last-child {
  margin-left: 0;
  color: var(--text);
}

/* ── PAGE HERO SUB (extends .page-hero from style.css) ── */
.page-hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CONTENT SECTIONS ── */
.content-section {
  margin-bottom: 56px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--navy);
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.process-step h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
}

.process-step p {
  font-size: 15px;
  margin-bottom: 0;
}

/* ── COMPARISON GRID ── */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.comparison-item {
  padding: 24px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.comparison-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
}

.comparison-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── USE CASES ── */
.use-cases {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.use-case {
  padding: 24px;
  border-left: 3px solid var(--teal);
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
}

.use-case h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
}

.use-case p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── SERVICE LINKS (Related Services Cards) ── */
.service-links {
  padding-top: 20px;
  margin-top: 56px;
  border-top: 1px solid var(--border);
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card-link {
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card-link:hover {
  text-decoration: none;
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(0, 165, 181, 0.1);
}

.card-link h3 {
  color: var(--navy);
  transition: color 0.2s;
}

.card-link:hover h3 {
  color: var(--teal);
}

.card-link p {
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 36px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero-sub {
    font-size: 16px;
  }

  .service-content {
    padding: 48px 0 24px;
  }

  .content-section {
    margin-bottom: 40px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .cards-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 88px 0 28px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .content-section h2 {
    font-size: 21px;
  }

  .process-step {
    flex-direction: column;
    gap: 12px;
  }
}
