/* Shared styles for /compare/* deep-dive pages.
   Lives in /compare/compare.css so each deep-dive HTML can link to one
   file instead of duplicating the ~250 lines below.  Slots under the
   global /styles.css — base utilities (.btn, .footer, etc.) still apply. */

.compare-hero {
  padding: 130px 24px 50px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.compare-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 16px;
  color: #fff;
}
.compare-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #EC4899 0%, #A855F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(234,234,234,0.78);
  max-width: 620px;
  margin: 0 auto 16px;
}
.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(168,85,247,0.10);
  border: 1px solid rgba(168,85,247,0.25);
  color: #C4B5FD;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.crumb {
  text-align: center;
  font-size: 12px;
  color: rgba(234,234,234,0.45);
  margin: -30px 0 30px;
}
.crumb a {
  color: rgba(234,234,234,0.7);
  text-decoration: none;
}
.crumb a:hover {
  color: #A855F7;
}

.verdict {
  max-width: 880px;
  margin: 0 auto;
  padding: 12px 24px 40px;
  text-align: center;
}
.verdict p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(234,234,234,0.85);
  margin: 0;
}
.verdict strong {
  color: #fff;
  font-weight: 600;
}

.quick-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 60px;
}
.quick-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.quick-table th, .quick-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.quick-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(234,234,234,0.55);
  background: rgba(168,85,247,0.04);
}
.quick-table thead th.xport-col {
  color: #fff;
  background: linear-gradient(180deg, rgba(168,85,247,0.18), rgba(168,85,247,0.06));
}
.quick-table tbody td {
  color: rgba(234,234,234,0.78);
  vertical-align: top;
}
.quick-table tbody td.xport-col {
  background: rgba(168,85,247,0.04);
  color: #fff;
  font-weight: 500;
}
.quick-table tbody td.row-label {
  color: #fff;
  font-weight: 600;
}
.quick-table tbody tr:last-child td {
  border-bottom: none;
}
.quick-table .good { color: #4ADE80; font-weight: 600; }
.quick-table .bad  { color: #FCA5A5; }
.quick-table .meh  { color: rgba(234,234,234,0.55); }

.pick-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 740px) {
  .pick-grid { grid-template-columns: 1fr; }
}
.pick-card {
  padding: 26px 26px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
}
.pick-card.xport {
  background: linear-gradient(160deg, rgba(168,85,247,0.10) 0%, rgba(236,72,153,0.05) 100%);
  border-color: rgba(168,85,247,0.35);
}
.pick-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.pick-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(234,234,234,0.78);
  font-size: 14px;
  line-height: 1.65;
}
.pick-card ul li { margin-bottom: 6px; }

.feature-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.feature-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 36px);
  color: #fff;
  margin: 0 0 18px;
  text-align: center;
}
.feature-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
}
.feature-row .feature-name {
  font-weight: 700;
  color: #fff;
}
.feature-row .col {
  color: rgba(234,234,234,0.78);
}
.feature-row .col.xport-col {
  color: #fff;
}
.feature-row .col .label {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.feature-row .col.xport-col .label {
  background: rgba(168,85,247,0.2);
  color: #C4B5FD;
}
.feature-row .col.competitor-col .label {
  background: rgba(255,255,255,0.08);
  color: rgba(234,234,234,0.75);
}

.cta-band {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  text-align: center;
}
.cta-band h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  margin: 0 0 14px;
}
.cta-band p {
  color: rgba(234,234,234,0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.cta-band .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.verify-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px;
  text-align: center;
  color: rgba(234,234,234,0.45);
  font-size: 12px;
  line-height: 1.6;
}
.verify-row a {
  color: #C4B5FD;
  text-decoration: none;
}
