/* Service detail pages: lightweight conversion endpoints */
/* Page-scoped via body.service-detail */

.service-detail .service-badge{
  display:inline-block;
  font-size:.85rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
  border:1px solid rgba(255,255,255,.25);
  padding:.25rem .6rem;
  border-radius:999px;
  margin-bottom:.75rem;
}

/* Cards layout */
.service-detail .service-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:1rem;
  margin-top:1.1rem;
}

@media (min-width: 992px){
  .service-detail .service-grid{
    grid-template-columns: 1fr 1fr;
    gap:1.1rem;
  }
}

.service-detail .service-card{
  height: 100%;
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:.9rem;
  padding:1.05rem 1.1rem;
  box-shadow:none;
}

.service-detail .service-card ul li{
  margin-bottom:.35rem;
}

/* CTA panel */
.service-detail .cta-panel{
  background:rgba(11,70,88,.04);
  border:1px solid rgba(11,70,88,.12);
  border-radius:1rem;
  overflow:hidden;
  box-shadow:none;
  position:sticky;
  top: 88px;
}

.service-detail .cta-panel-top{
  padding: 1.0rem 1.0rem .85rem;
}

.service-detail .cta-panel-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding:.8rem 1.0rem .9rem;
  border-top:1px solid rgba(11,70,88,.12);
  background:#fff;
}

.service-detail .cta-secondary-link{
  font-size:.95rem;
  text-decoration:none;
}

.service-detail .cta-secondary-link:hover{
  text-decoration:underline;
}

/* Compact steps */
.service-detail .cta-steps-compact{
  margin-top: .65rem;
  color: rgba(0,0,0,.78);
  font-size: .95rem;
}

.service-detail .cta-steps-compact li{
  margin: .35rem 0;
}

.service-detail .pricing-note{
  color: rgba(0,0,0,.58);
  font-size: .85rem;
  line-height: 1.35;
}

/* Details disclosure */
.service-detail .cta-details{
  border: 1px dashed rgba(11,70,88,.22);
  border-radius: .75rem;
  padding: .65rem .8rem;
  background: rgba(255,255,255,.65);
  overflow: hidden; /* required for smooth animation */
}

.service-detail .cta-details summary{
  cursor: pointer;
  font-weight: 700;
  color: rgba(0,0,0,.78);
  list-style: none;
  font-size: 0.85rem;
}

.service-detail .cta-details summary::-webkit-details-marker{
  display:none;
}

.service-detail .cta-details summary:after{
  content: "Show";
  float: right;
  color: rgba(0,0,0,.55);
  font-weight: 600;
}

.service-detail .cta-details[open] summary:after{
  content: "Hide";
}

.service-detail .cta-details-body{
  color: rgba(0,0,0,.75);

  /* Smooth open/close */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 280ms ease, opacity 180ms ease;
}

.service-detail .cta-details[open] .cta-details-body{
  max-height: 500px;
  opacity: 1;
  font-size: 0.9rem;
}

/* Disclaimer */
.service-detail .disclaimer-note{
  color: rgba(0,0,0,.60);
  font-size: .95rem;
  line-height: 1.35;
  padding-left: .9rem;
  border-left: 3px solid rgba(11,70,88,.35);
}

/* Fit grid (bottom section) */
.service-detail .fit-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:.8rem;
}

@media (min-width: 768px){
  .service-detail .fit-grid{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-detail .fit-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:.9rem;
  padding:1rem 1.05rem;
}

.service-detail .fit-title{
  font-weight:700;
  margin-bottom:.2rem;
}

.service-detail .fit-body{
  color:rgba(0,0,0,.75);
}

/* Improve wrapping to reduce widows in narrow cards */
/* .service-detail .service-card,
.service-detail .cta-panel{
  hyphens: auto;
  -webkit-hyphens: auto;
} */

/* .service-detail .service-card p,
.service-detail .service-card li,
.service-detail .cta-panel p,
.service-detail .cta-panel li{
  text-wrap: pretty;
} */

.service-detail .service-intro{
  max-width: 52rem; /* optional: prevents overly long line length */
}

/* Make the two main columns stretch and behave predictably */
.service-detail .service-col{
  display: flex;
  flex-direction: column;
}

.service-detail .cta-col{
  display: flex;
}

/* Let the cards row occupy remaining space under the intro */
.service-detail .service-grid{
  flex: 1;
  align-content: start;
}

/* Make CTA panel fill its column, and pin the footer to the bottom */
.service-detail .cta-panel{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

  /* Optional: if you keep sticky, it will still behave, but see note below */
  /* position: sticky; top: 88px; */
}

.service-detail .cta-panel-top{
  flex: 1;
}

.service-detail .cta-panel-bottom{
  margin-top: auto;
}

.cta-details-body .term {
  font-weight: 600;
}

.services-kicker {
  /* font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  
  color: rgba(209, 55, 8, 0.92);
  margin-bottom: 0.15rem !important; */
  /* minimized */

  font-size: 1rem;
  font-weight: 600;
  color: #4b5563; /* or equivalent muted tone */
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.9;
}