/* 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;
  }
}

/* Guide links on comparison pages */
.vs-guides {
  padding: 0 0 var(--section-y);
  text-align: center;
}
.vs-guides .section-title {
  margin-bottom: 24px;
}
.vs-guides__list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.vs-guides__list li {
  margin-bottom: 12px;
}
.vs-guides__list a {
  color: var(--gold);
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vs-guides__list a:hover {
  color: var(--gold-light);
}

/* FAQ accordion on vs pages */
.vs-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-x) var(--section-y);
}
.vs-faq h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 24px;
  text-align: center;
}
.vs-faq__item {
  border-bottom: 1px solid rgba(138, 132, 120, 0.2);
}
.vs-faq__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.vs-faq__q:hover { color: var(--gold); }
.vs-faq__q i {
  font-size: 0.75rem;
  color: var(--warm-gray);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.vs-faq__item.open .vs-faq__q i { transform: rotate(180deg); }
.vs-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.vs-faq__item.open .vs-faq__a { max-height: 200px; }
.vs-faq__a p {
  color: var(--warm-gray-light);
  font-size: 0.92rem;
  line-height: 1.7;
  padding-bottom: 18px;
}
