/* ============================================================
   Contractors page
   Shared pieces (.page-hero, .cta-strip, .btn, .eyebrow) come from style.css.
   ============================================================ */

/* ============================================================
   Lead in
   ============================================================ */
.ct-lead { background: var(--white); }

.ct-lead-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.ct-lead-left h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  margin-bottom: 32px;
}

.ct-lead-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ct-stat { border-top: 3px solid var(--accent); padding-top: 14px; }
.ct-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}
.ct-stat-label {
  display: block;
  margin-top: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.4;
}

.ct-lead-body p {
  color: var(--gray-600);
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.ct-lead-body p:first-child {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
}
.ct-lead-kicker {
  margin-bottom: 0 !important;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-head);
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  line-height: 1.5 !important;
}

/* ============================================================
   Situations we handle
   ============================================================ */
.ct-help {
  background: var(--off-white);
  padding: 88px 0;
}
.ct-help-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 40px;
}
.ct-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 4px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--rl);
  overflow: hidden;
}
.ct-help-item {
  background: var(--white);
  padding: 30px 28px;
}
.ct-help-item i {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: block;
}
.ct-help-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 9px;
}
.ct-help-item p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Fast Track band
   ============================================================ */
.ct-fasttrack {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--blue) 100%);
  padding: 76px 0;
}
.ct-ft-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.ct-ft-text { max-width: 620px; }
.ct-ft-text h2 { color: var(--white); margin-bottom: 16px; }
.ct-ft-text p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.ct-ft-text p strong { color: var(--white); font-weight: 700; }
.ct-ft-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.ct-ft-figure {
  flex-shrink: 0;
  text-align: center;
  padding: 32px 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--rl);
  background: rgba(255,255,255,.05);
}
.ct-ft-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.ct-ft-cap {
  display: block;
  margin-top: 12px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-light);
}

/* ============================================================
   The three contract bonds
   ============================================================ */
.ct-bonds { background: var(--white); }

.ct-bonds-head { max-width: 720px; margin-bottom: 48px; }
.ct-bonds-sub {
  color: var(--gray-600);
  font-size: 1.025rem;
  line-height: 1.75;
  margin: 0;
}

.ct-bond {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.ct-bond:last-of-type { margin-bottom: 0; }

/* Left rail: number, why, who */
.ct-bond-rail {
  background: var(--off-white);
  border-right: 1px solid var(--gray-200);
  padding: 32px 28px;
}
.ct-bond-num {
  display: block;
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: .35;
  margin-bottom: 22px;
}
.ct-bond-rail-block { margin-bottom: 22px; }
.ct-bond-rail-block:last-child { margin-bottom: 0; }
.ct-rail-label {
  display: block;
  font-family: var(--font-head);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 7px;
}
.ct-bond-rail-block p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Right body */
.ct-bond-body { padding: 32px 34px; }
.ct-bond-body h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.ct-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 36px;
  margin-bottom: 26px;
}
.ct-req-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ct-req-label i { color: var(--accent); font-size: .75rem; }
.ct-req p {
  font-size: .89rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Good to know */
.ct-tips {
  background: rgba(46,125,209,.06);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 18px;
}
.ct-tips-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.ct-tips ul { list-style: none; margin: 0; padding: 0; }
.ct-tips li {
  position: relative;
  padding-left: 16px;
  font-size: .88rem;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 9px;
}
.ct-tips li:last-child { margin-bottom: 0; }
.ct-tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.ct-tips li strong { color: var(--navy); font-weight: 700; }

/* State note */
.ct-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  border-left: 3px solid var(--gray-400);
  background: var(--gray-100);
  border-radius: var(--r);
  padding: 13px 16px;
}
.ct-note > i { color: var(--gray-400); font-size: .8rem; flex-shrink: 0; margin-top: 3px; }
.ct-note p { font-size: .8rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

.ct-bonds-foot {
  margin-top: 40px;
  text-align: center;
}
.ct-bonds-foot p { color: var(--gray-600); font-size: .95rem; margin: 0; }
.ct-bonds-foot a { color: var(--accent); font-weight: 600; }
.ct-bonds-foot a:hover { text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .ct-lead-grid { grid-template-columns: 1fr; gap: 36px; }
  .ct-lead-left h2 { margin-bottom: 24px; }
  .ct-lead-stats { flex-direction: row; gap: 40px; }
  .ct-bond { grid-template-columns: 1fr; }
  .ct-bond-rail {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
  }
  .ct-bond-num { margin-bottom: 0; }
  .ct-bond-rail-block { margin-bottom: 0; }
}

@media (max-width: 768px) {
  .ct-help { padding: 60px 0; }
  .ct-fasttrack { padding: 56px 0; }
  .ct-ft-inner { gap: 36px; }
  .ct-ft-figure { padding: 24px 32px; }
  .ct-bond-body { padding: 26px 24px; }
  .ct-bond-rail { grid-template-columns: 1fr; gap: 18px; padding: 26px 24px; }
  .ct-req-grid { grid-template-columns: 1fr; gap: 18px; }
  .ct-lead-stats { flex-direction: column; gap: 24px; }
}

@media (max-width: 520px) {
  .ct-ft-actions { flex-direction: column; }
  .ct-ft-actions .btn { width: 100%; justify-content: center; }
  .ct-ft-figure { width: 100%; }
}
