/* Verbal Shake - Compare Page Shared Styles */

.compare-page .intro,
.compare-page .section-title,
.compare-page .narrow,
.compare-page .faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.compare-page .intro { margin: 8px auto 12px; }
.compare-page .intro h1 {
  margin: 0 0 6px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}
.compare-page .intro .lede { color: #2c3b63; margin: 0; }

.compare-page .cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.compare-page .cta-row a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #cfe3ff;
  background: #fff;
  color: #0b1221;
}
.compare-page .cta-row a.btn.primary {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}
.compare-page .cta-row a.btn:hover {
  background: #f7faff;
  color: #16a34a;
}
.compare-page .cta-row a.btn.primary:hover {
  filter: brightness(0.95);
}

.compare-page .table-wrap {
  overflow: auto;
  border: 1px solid #e8edf7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.04);
}
.compare-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-page th,
.compare-page td {
  padding: 12px 14px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
}
.compare-page thead th {
  text-align: left;
  background: #f8fafc;
  font-weight: 700;
}
.compare-page tr:last-child td { border-bottom: 0; }
.compare-page .check { color: #16a34a; font-weight: 700; }
.compare-page .dash { color: #94a3b8; }

.compare-page .cols {
  display: grid;
  gap: 16px;
}
@media (min-width: 920px) {
  .compare-page .cols {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-page .faq { margin-top: 28px; }
.compare-page .faq details {
  border: 1px solid #e8edf7;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 10px 0;
  background: #fff;
}
.compare-page .faq summary {
  font-weight: 600;
  cursor: pointer;
}
