/* HireDevelopers pillar extras (service-shell hire pages + footer-component hire-wide) */
.main-menu .navigation > li > ul.hire-wide { width: min(300px, calc(100vw - 28px)); }
/* Hire dropdown link layout lives in footer-component.css (hire-wide block) */

.silo-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.silo-strip .silo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.silo-strip .silo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.silo-strip .silo-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.silo-strip .silo-links a:hover,
.silo-strip .silo-links a.is-current {
  color: var(--green-dk);
  border-bottom-color: var(--green);
}

.compare-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.compare-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.compare-panel > p.sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 720px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.compare-table thead th {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-weight: 600;
}
.compare-table tbody tr:nth-child(even) td { background: rgba(244, 247, 255, 0.65); }
.compare-table .yes { color: var(--green-dk); font-weight: 700; }

.faq-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  margin-bottom: 30px;
}
.faq-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--navy);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5778;
}

.case-card {
  background: linear-gradient(135deg, rgba(53,194,100,.08), rgba(66,114,255,.06));
  border: 1px solid rgba(53,194,100,.25);
  border-radius: var(--r-md);
  padding: 28px 32px;
  margin-bottom: 30px;
}
.case-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--navy);
}
.case-card p { margin: 0; font-size: 15px; line-height: 1.65; color: #3d4d6e; }

.answer-lead {
  font-size: 17px;
  line-height: 1.75;
  color: #3d4d6e;
  margin-bottom: 20px;
}
.answer-lead strong { color: var(--navy); }
