/* ===== COMPARE PAGE ===== */

/* Hero */
.compare-hero {
  padding-top: 72px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 64px;
}
.compare-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}
.compare-hero .hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.compare-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Verdict banner */
.verdict-banner {
  background: var(--accent-dim);
  border: 1px solid rgba(232,184,75,0.2);
  padding: 20px 48px;
  text-align: center;
}
.verdict-banner p {
  font-size: 17px;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 600;
  font-style: italic;
}

/* Comparison table section */
.compare-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 48px;
}
.compare-section .section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.compare-section h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.compare-section .section-lead {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.compare-table thead tr {
  border-bottom: 1px solid rgba(232,184,75,0.2);
}
.compare-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}
.compare-table thead th:first-child { padding-left: 0; }
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.compare-table tbody tr:hover { background: rgba(232,226,240,0.02); }
.compare-table tbody td {
  padding: 14px 16px;
  color: var(--fg-muted);
  line-height: 1.5;
  vertical-align: top;
}
.compare-table tbody td:first-child {
  padding-left: 0;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
.dealview-row {
  background: rgba(232,184,75,0.04);
  border-left: 3px solid var(--accent);
}
.dealview-row td:first-child { color: var(--accent); }
.tag-yes { color: #4ade80; font-size: 12px; font-weight: 600; }
.tag-no { color: rgba(232,226,240,0.3); font-size: 12px; }
.tag-basic { color: var(--fg-muted); font-size: 12px; }

/* Key differentiators */
.diff-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.diff-section .section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.diff-section h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.diff-section .section-lead {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.diff-card:hover {
  border-color: rgba(232,184,75,0.2);
  box-shadow: 0 0 30px rgba(232,184,75,0.04);
}
.diff-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.diff-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.diff-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Bottom CTA */
.compare-cta-section {
  text-align: center;
  padding: 80px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.compare-cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
}
.compare-cta-section .cta-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.compare-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--fg);
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(232,226,240,0.3); }

/* Email capture form */
.email-capture-form {
  max-width: 480px;
  margin: 0 auto 12px;
}
.email-capture-row {
  display: flex;
  gap: 10px;
}
.email-capture-row input[type="email"] {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.email-capture-row input[type="email"]::placeholder { color: var(--fg-muted); }
.email-capture-row input[type="email"]:focus { border-color: rgba(232,184,75,0.4); }
.capture-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 10px;
}
.capture-success {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .compare-hero { padding-left: 24px; padding-right: 24px; }
  .compare-section { padding: 60px 24px; }
  .verdict-banner { padding: 16px 24px; }
  .diff-section { padding: 0 24px 60px; }
  .diff-grid { grid-template-columns: 1fr; }
  .compare-cta-section { padding: 60px 24px; }
  .compare-table-wrap { margin-left: -24px; margin-right: -24px; padding: 0 24px; }
}