.rb-brand-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar_home-link {
  font-size: 0.9rem;
  text-decoration: none;
  margin-right: 0.75rem;
}

.navbar_home-link:hover {
  color: var(--white);
}

a.rb-service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

a.rb-service-card-link:hover,
a.rb-service-card-link:focus-visible {
  border-color: #7f2bff;
  box-shadow: 0 0 0 1px #7f2bff40;
  outline: none;
}

.rb-service-card_more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #7f2bff;
  font-size: 0.875rem;
  font-weight: 600;
}

/* 서비스 상세 — fixed topbar 아래 여백 (index rb-hero 12rem 대신 서브페이지용) */
.rb-main.rb-svc-page {
  padding-top: 0;
}

.rb-svc-hero {
  padding-top: 8rem;
  padding-bottom: 2.5rem;
}

.rb-svc-hero_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  display: grid;
}

.rb-svc-page h1.rb-title-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.rb-svc-page h2.rb-title-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.rb-svc-hero .rb-muted {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}

.rb-svc-hero .rb-eyebrow {
  margin-bottom: 0.25rem;
}

.rb-svc-hero_img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #333;
}

.rb-svc-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid #2a2a2a;
}

section.rb-svc-hero {
  border-top: none;
}

.rb-svc-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.rb-svc-bullets {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--grey);
  line-height: 1.7;
}

.rb-svc-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.75rem;
}

.rb-svc-features li {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--grey);
}

.rb-svc-steps {
  counter-reset: svcstep;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rb-svc-steps li {
  counter-increment: svcstep;
  border-left: 2px solid #7f2bff;
  padding: 0 0 1.5rem 1.25rem;
  margin-left: 0.5rem;
  position: relative;
}

.rb-svc-steps li::before {
  content: counter(svcstep);
  position: absolute;
  left: -0.65rem;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #7f2bff;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rb-svc-steps li:last-child {
  padding-bottom: 0;
}

.rb-svc-steps strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.rb-demo-panel {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 1rem;
  overflow: hidden;
}

.rb-demo-panel_head {
  background: #242424;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #333;
}

.rb-demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
}

.rb-demo-dot:nth-child(1) { background: #ff5f57; }
.rb-demo-dot:nth-child(2) { background: #febc2e; }
.rb-demo-dot:nth-child(3) { background: #28c840; }

.rb-demo-title {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  color: var(--grey);
}

.rb-demo-panel_body {
  padding: 1.25rem;
}

.rb-demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rb-demo-box {
  background: #101010;
  border: 1px dashed #7f2bff60;
  border-radius: 0.5rem;
  padding: 1rem;
  min-height: 8rem;
}

.rb-demo-label {
  font-size: 0.7rem;
  color: #7f2bff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rb-demo-line {
  height: 0.5rem;
  background: #2e2e2e;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.rb-demo-line.is-accent {
  background: #7f2bff40;
  width: 70%;
}

.rb-demo-pill {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #7f2bff30;
  color: #c9a8ff;
  font-size: 0.75rem;
  margin: 0.2rem 0.25rem 0 0;
}

.rb-demo-row {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.rb-svc-faq .rb-faq-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 0.75rem;
  padding: 0 1rem;
}

.rb-svc-cta {
  text-align: center;
  padding: 3rem 0 4rem;
}

.rb-svc-screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.rb-svc-screens_col {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.rb-svc-screens_col h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #7f2bff;
}

.rb-svc-screens_col p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--grey);
}

.rb-svc-faq .rb-faq_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media screen and (max-width: 991px) {
  .rb-svc-hero {
    padding-top: 7rem;
  }

  .rb-svc-hero_grid,
  .rb-demo-split,
  .rb-svc-screens {
    grid-template-columns: 1fr;
  }

  .rb-svc-hero_img {
    order: -1;
  }
}

@media screen and (max-width: 767px) {
  .rb-svc-hero {
    padding-top: 6.5rem;
  }

  .rb-svc-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
