/* /for-contractors, contractor pitch page.
   Reuses .page-hero, .advertise-lead, .advertise-grid/.advertise-card,
   .advertise-help, .data-tier-table, .btn-* from styles.css. Only the
   page-specific blocks (hero CTA row, numbered steps, cost-table emphasis,
   sample teaser email, claim card, FAQ list) live here. Light-theme hardcoded
   colors to match the /advertise + /data reference pages exactly. */

/* Hero CTA row */
.fc-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Section spacing, mirrors .data-section rhythm */
.fc-section { padding: 36px 0; }
.fc-section h2 { margin: 0 0 10px; }
.fc-section > .container > h3 { margin: 26px 0 10px; }

/* Numbered "how it works" steps */
.fc-steps { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; }
.fc-step { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px 20px; }
.fc-step-num { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: #407EC9; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.fc-step-body h3 { margin: 0 0 5px; font-size: 1.05rem; }
.fc-step-body p { margin: 0; color: #6b7280; font-size: 0.92rem; line-height: 1.55; }

/* Cost table, reuses .data-tier-table; emphasize price column */
.fc-cost-table td:last-child { white-space: nowrap; }
.fc-cost-table tbody tr:nth-child(odd) td { background: #fafbfc; }
.fc-cost-note { margin-top: 14px; }

/* Sample teaser email */
.fc-sample-heading { scroll-margin-top: 80px; }
.fc-email-sample { max-width: 560px; margin: 16px 0 0; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06); }
.fc-email-head { padding: 14px 18px; border-bottom: 1px solid #eef2f6; background: #f8fafc; display: flex; flex-direction: column; gap: 4px; }
.fc-email-from { font-size: 0.8rem; color: #6b7280; }
.fc-email-subj { font-size: 0.95rem; font-weight: 700; color: #221f20; }
.fc-email-body { padding: 18px; }
.fc-email-body p { margin: 0 0 12px; font-size: 0.92rem; line-height: 1.55; color: #221f20; }
.fc-email-progs { background: #f1f5f9; border-radius: 8px; padding: 12px 14px; font-size: 0.88rem; line-height: 1.6; }
.fc-email-fine { font-size: 0.8rem; color: #6b7280; }
.fc-email-btn { display: inline-block; background: #F68D2E; color: #1a1a1a; font-weight: 700; font-size: 0.95rem; padding: 12px 22px; border-radius: 8px; }

/* Claim card */
.fc-claim-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; max-width: 720px; }
.fc-claim-card > p { margin: 0 0 16px; font-size: 0.96rem; line-height: 1.6; color: #221f20; }
.fc-claim-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.fc-claim-fine { margin: 0; font-size: 0.85rem; color: #6b7280; }

/* Honest FAQ */
.fc-faq { margin: 18px 0 0; }
.fc-faq dt { font-weight: 700; font-size: 1.02rem; margin: 18px 0 6px; color: #221f20; }
.fc-faq dt:first-child { margin-top: 0; }
.fc-faq dd { margin: 0; font-size: 0.93rem; line-height: 1.6; color: #6b7280; }

/* Responsive: stack hero/claim CTAs and tighten steps on small screens.
   Hamburger nav is handled by the global .nav-links / .hamburger rules in
   styles.css (kicks in below the shared breakpoint). */
@media (max-width: 768px) {
  .fc-hero-cta .btn,
  .fc-claim-cta .btn { width: 100%; justify-content: center; }
  .fc-step { padding: 16px; }
}
@media (max-width: 480px) {
  .fc-section { padding: 30px 0; }
  .fc-email-body, .fc-claim-card { padding: 16px; }
}
