/* /agencies/compare. Hero and buttons from agencies.css; cards and FAQ
   from site.css. This adds the comparison table and the fit cards. */

.hero-center .crumbs {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ghost-50);
}
.hero-center .crumbs a {
  color: var(--ghost-72);
  text-decoration: none;
}
.day-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.compare-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--section-y) 24px;
}
.compare-section .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.compare-section h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 28px;
}
.compare-scroll {
  overflow-x: auto;
  border-radius: 16px;
}
.compare-table {
  width: 100%;
  min-width: 760px;
  border: 1px solid var(--line);
  border-collapse: collapse;
  font-size: 14.5px;
  line-height: 1.45;
}
.compare-table caption {
  caption-side: top;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  padding: 14px 16px 6px;
}
.compare-table th,
.compare-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  width: 25%;
}
.compare-table thead th {
  border-top: 0;
  background: var(--ghost);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.compare-table tbody th {
  font-weight: 700;
  color: var(--ink);
  background: var(--ghost);
}
.compare-table .is-rayva {
  background: var(--peach-tile);
}
.compare-table thead .is-rayva {
  color: var(--ink);
}
.compare-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--charcoal);
  max-width: 78ch;
}

.fit-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-y) 24px;
}
.fit-section h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 28px;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}
.fit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.fit-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.fit-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal);
}
.fit-card.dark {
  background: var(--night);
  border-color: var(--night);
  color: var(--ghost);
}
.fit-card.dark h3 {
  color: var(--ghost);
}
.fit-card.dark p {
  color: var(--ghost-72);
}

.compare-cta .btn-coral {
  display: inline-block;
  text-decoration: none;
  padding: 15px 28px;
  font-size: 16px;
}
.compare-cta .other-creds {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--ghost-65);
}
.compare-cta .other-creds a {
  color: var(--ghost);
}

@media (pointer: coarse) {
  /* The breadcrumb is navigation: a 44px hit area on touch, no visual change. */
  .crumbs a {
    display: inline-block;
    padding: 16px 0;
    margin: -16px 0;
  }
}
