/* Comparison page styles — extends landing styles.css */

.vs-page { padding-top: 100px; }

.vs-hero {
  padding: 60px 0;
  text-align: center;
}
.vs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-glow);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.vs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.vs-hero__sub {
  color: var(--warm-gray-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Comparison table */
.vs-table { padding: 0 0 var(--section-y); }
.vs-table__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.vs-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.vs-table th,
.vs-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(138, 132, 120, 0.15);
}
.vs-table th {
  color: var(--warm-gray);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vs-table th:first-child { width: 40%; }
.vs-table td:nth-child(2) { color: var(--gold); font-weight: 500; }
.vs-table td:nth-child(3) { color: var(--warm-gray-light); }
.vs-table .check { color: var(--gold); }
.vs-table .cross { color: var(--warm-gray); }
.vs-table__head-piano { color: var(--gold) !important; }
.vs-table__head-comp { color: var(--warm-gray-light) !important; }

/* Verdict */
.vs-verdict {
  padding: 0 0 var(--section-y);
}
.vs-verdict__card {
  background: var(--charcoal);
  border: 1px solid rgba(138, 132, 120, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  max-width: 720px;
  margin: 0 auto;
}
.vs-verdict__card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 16px;
}
.vs-verdict__card p {
  color: var(--warm-gray-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.vs-verdict__card p:last-of-type { margin-bottom: 24px; }
.vs-verdict__card .btn { display: inline-flex; }

/* Who it's for */
.vs-who { padding: 0 0 var(--section-y); }
.vs-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.vs-who__col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.vs-who__col:first-child h3 { color: var(--gold); }
.vs-who__col:last-child h3 { color: var(--warm-gray-light); }
.vs-who__col ul {
  list-style: none;
  padding: 0;
}
.vs-who__col li {
  color: var(--warm-gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.vs-who__col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--warm-gray);
}

@media (max-width: 640px) {
  .vs-who__grid { grid-template-columns: 1fr; }
}
