/* Companies page. Reuses tokens, .btn, .eyebrow and .closing-cta from site.css
   and home.css; everything here is specific to this page's sections. */

/* ── Hero ─────────────────────────────────────────────────────────────── */
.co-hero { background: var(--color-white); padding: 88px 32px 72px; border-bottom: 1px solid var(--color-hairline); }
.co-hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.co-hero h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--color-ink);
  margin: 14px 0 18px;
  text-wrap: balance;
}
.co-hero p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0 auto 30px;
  max-width: 620px;
  text-wrap: pretty;
}
.co-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── The gap ──────────────────────────────────────────────────────────── */
.co-problem { background: var(--color-page-bg); padding: 76px 32px; }
.co-problem-inner { max-width: 1080px; margin: 0 auto; }
.co-problem-head { max-width: 660px; margin-bottom: 40px; }
.co-problem-head h2 {
  font-size: 27px; line-height: 1.25; font-weight: 600;
  letter-spacing: -0.018em; color: var(--color-ink); margin: 12px 0 12px;
  text-wrap: balance;
}
.co-problem-head p {
  font-size: 15px; line-height: 1.65; color: var(--color-text-secondary);
  margin: 0; text-wrap: pretty;
}
.co-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.co-problem-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-top: 3px solid var(--color-amber);
}
.co-problem-card h3 {
  font-size: 15px; font-weight: 600; color: var(--color-ink); margin: 0 0 8px;
}
.co-problem-card p {
  font-size: 13.5px; line-height: 1.6; color: var(--color-text-secondary); margin: 0;
  text-wrap: pretty;
}

/* ── What a package covers ────────────────────────────────────────────── */
.co-support { background: var(--color-white); padding: 80px 32px; }
.co-support-inner { max-width: 860px; margin: 0 auto; }
.co-support-head { margin-bottom: 44px; }
.co-support-head h2 {
  font-size: 27px; line-height: 1.25; font-weight: 600;
  letter-spacing: -0.018em; color: var(--color-ink); margin: 12px 0 0;
  text-wrap: balance;
}
.co-support-rows { display: flex; flex-direction: column; gap: 4px; }
.co-support-row {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--color-hairline);
}
.co-support-row:last-child { border-bottom: 1px solid var(--color-hairline); }
.co-support-num {
  flex: none;
  width: 40px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-blue);
  padding-top: 2px;
}
.co-support-body h3 {
  font-size: 16px; font-weight: 600; color: var(--color-ink); margin: 0 0 8px;
}
.co-support-body p {
  font-size: 14.5px; line-height: 1.68; color: var(--color-text-secondary); margin: 0;
  max-width: 62ch;
  text-wrap: pretty;
}

/* ── Privacy (dark band) ──────────────────────────────────────────────── */
.co-privacy { background: var(--color-ink); padding: 76px 32px; }
.co-privacy-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; gap: 32px; align-items: flex-start;
}
.co-privacy-icon { flex: none; padding-top: 4px; }
.co-privacy-copy .eyebrow { color: var(--color-amber); }
.co-privacy-copy h2 {
  font-size: 26px; line-height: 1.25; font-weight: 600;
  letter-spacing: -0.018em; color: #fff; margin: 12px 0 16px;
  text-wrap: balance;
}
.co-privacy-copy p {
  font-size: 14.5px; line-height: 1.7; color: var(--color-text-faint);
  margin: 0 0 14px; max-width: 64ch; text-wrap: pretty;
}
.co-privacy-copy p:last-child { margin-bottom: 0; }

/* ── How it runs ──────────────────────────────────────────────────────── */
.co-how { background: var(--color-page-bg); padding: 76px 32px; }
.co-how-inner { max-width: 1080px; margin: 0 auto; }
.co-how-head { margin-bottom: 36px; }
.co-how-head h2 {
  font-size: 27px; line-height: 1.25; font-weight: 600;
  letter-spacing: -0.018em; color: var(--color-ink); margin: 12px 0 0;
  text-wrap: balance;
}
.co-how-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  counter-reset: step;
}
.co-how-steps li {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  counter-increment: step;
  position: relative;
}
.co-how-steps li::before {
  content: counter(step);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-blue);
  display: block;
  margin-bottom: 10px;
}
.co-how-step-title {
  font-size: 14.5px; font-weight: 600; color: var(--color-ink); margin-bottom: 6px;
}
.co-how-steps li p {
  font-size: 13px; line-height: 1.6; color: var(--color-text-secondary); margin: 0;
  text-wrap: pretty;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .co-problem-grid { grid-template-columns: 1fr; }
  .co-how-steps { grid-template-columns: repeat(2, 1fr); }
  .co-privacy-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 560px) {
  .co-hero { padding: 60px 20px 52px; }
  .co-hero h1 { font-size: 30px; }
  .co-hero p { font-size: 15px; }
  .co-problem, .co-support, .co-privacy, .co-how { padding-left: 20px; padding-right: 20px; }
  .co-how-steps { grid-template-columns: 1fr; }
  .co-support-row { flex-direction: column; gap: 10px; }
  .co-support-num { width: auto; }
}
