/* Root section */
#jb-zpe.service_page {
  position: relative;
  overflow: hidden;
  background: var(--background, #0b0b0d);
  color: var(--text-body, #e8e8e8);
}

/* Decorative orb (matches /services/) */
#jb-zpe .decorative_orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ff7a18, transparent 70%);
  filter: blur(100px);
  opacity: 0.35;
  z-index: 0;
}

/* Title section */
#jb-zpe #title_container {
  text-align: center;
  margin: 80px auto 50px;
}

#jb-zpe #title_container h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
}

#jb-zpe #title_container sub {
  display: block;
  font-size: 1rem;
  color: #999;
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero section */
#jb-zpe .hero_section {
  padding: 60px 0;
  position: relative;
}

#jb-zpe .hero_section .heading_display {
  font-size: 1.7rem;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

#jb-zpe .hero_section .subheading {
  color: #bcbcbc;
  line-height: 1.6;
  max-width: 600px;
}

#jb-zpe .cta_group {
  margin-top: 20px;
}

#jb-zpe .cta_group .button {
  margin-right: 8px;
}

/* Grid layout (inherits from your system) */
#jb-zpe .grid_layout {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

/* Visual panel and stats */
#jb-zpe .visual_panel {
  text-align: center;
  background: var(--bg-card, #141418);
  padding: 30px;
  border-radius: 12px;
}

#jb-zpe .stats_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#jb-zpe .info_pill {
  color:#fff;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Content sections */
#jb-zpe .content_section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

/* Section headers */
#jb-zpe .content_section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

#jb-zpe .content_section .lead {
  text-align: center;
  color: #bbb;
  margin-bottom: 40px;
}

/* Cards */
#jb-zpe .card {
  background: var(--bg-card, #151519);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#jb-zpe .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Features grid */
#jb-zpe .features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

#jb-zpe .feature_card .icon_box {
  width: 40px;
  height: 40px;
  color: var(--accent-orange, #ff8a00);
  margin-bottom: 12px;
}

#jb-zpe .feature_card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

/* Process steps */
#jb-zpe .process_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Code blocks */
#jb-zpe pre {
  background: #111;
  padding: 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  overflow-x: auto;
}

/* FAQ */
#jb-zpe .faq_grid {
  display: grid;
  gap: 16px;
}

#jb-zpe details.card summary {
  cursor: pointer;
  font-weight: 600;
}

#jb-zpe details.card p {
  margin-top: 10px;
  color: #ccc;
}

/* CTA footer */
#jb-zpe .cta_wide {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, rgba(255,138,0,0.15), rgba(255,255,255,0.05));
  border-radius: 16px;
}

#jb-zpe .top_group .button{
  width:180px;
  text-align:center;
}
