/* NOTE: .page-hero now lives in style.css — it is shared by every interior page. */

/* ============================================================
   Services Intro ("Surety Bonds Are All We Do")
   ============================================================ */
.services-intro { background: var(--white); }

.services-intro-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.si-lead h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 28px; }

/* Oversized "in surety since" year marker, echoing the homepage stat tiles */
.si-since {
  border-top: 3px solid var(--accent);
  padding-top: 16px;
  display: inline-block;
}
.si-since-num {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}
.si-since-label {
  display: block;
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
}

.si-body p {
  color: var(--gray-600);
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.si-body p:first-child {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
}

/* Who We Work With */
.si-audience {
  background: var(--off-white);
  border-radius: var(--rl);
  padding: 28px 32px;
  margin: 32px 0;
}
.si-audience-label {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.si-audience ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
.si-audience li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.45;
}
.si-audience li i {
  color: var(--accent);
  font-size: .85rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.si-outro { margin-bottom: 0 !important; }
.si-outro a { color: var(--accent); font-weight: 600; }
.si-outro a:hover { text-decoration: underline; }

/* NOTE: .jump-nav / .jump-link now live in style.css — shared with faq.html.
   The active-link scroll observer moved from services.js into main.js. */

/* ============================================================
   Bond Sections
   ============================================================ */
.services-body { background: var(--white); }

.bond-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.bond-section:last-child { border-bottom: none; }
.bond-section--alt { background: var(--off-white); }

/* Section head: two columns. Left = icon inline with the title, then the
   description. Right = optional callout + the apply CTA, which fills the
   empty space beside the paragraph instead of stacking below it. */
.bond-head {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.bond-head-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.bond-head-title h2 { margin-bottom: 0; }

.bond-head-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bond-head-right .btn { align-self: flex-start; }

.bond-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(46,125,209,.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.bond-desc          { color: var(--gray-600); font-size: 1.025rem; line-height: 1.75; margin-bottom: 0; }

/* Fast Track callout */
.fast-track-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--navy);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-bottom: 0;
}
.bond-section--alt .fast-track-callout { background: var(--blue); }

.ftc-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.fast-track-callout strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 6px;
}
.fast-track-callout p {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   Bond Catalog — the expansive type breakdown inside each of the
   three categories. Auto-fills columns so Commercial (9 groups) and
   Contract (3 groups) both stay balanced.
   ============================================================ */
.bond-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 4px;
  margin-bottom: 32px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--rl);
  overflow: hidden;
}

.bond-cat {
  background: var(--white);
  padding: 26px 28px;
}

.bond-cat-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}
.bond-cat-label i { font-size: .8rem; }

.bond-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bond-cat-list li {
  position: relative;
  padding-left: 15px;
  font-size: .89rem;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.45;
}
.bond-cat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .55;
}

.bond-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--r);
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
}
.bond-note > i       { color: var(--accent); font-size: .85rem; flex-shrink: 0; margin-top: 2px; }
.bond-note p         { font-size: .825rem; color: var(--gray-600); line-height: 1.6; margin: 0; }
.bond-note a         { color: var(--accent); font-weight: 600; }
.bond-note a:hover   { text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .services-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .si-lead h2 { margin-bottom: 20px; }
  .bond-head  { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .bond-section    { padding: 56px 0; }
  .bond-head       { margin-bottom: 32px; }
  .bond-head-title { gap: 14px; margin-bottom: 14px; }
  .bond-icon-wrap  { width: 46px; height: 46px; border-radius: 12px; font-size: 1.1rem; }
  .si-audience     { padding: 22px 24px; }
  .si-audience ul  { grid-template-columns: 1fr; }
  .si-body p:first-child { font-size: 1.05rem; }
}
