/* ============================================================
   Momentra Global — comparison ("vs") pages
   Layers on top of styles.css
   ============================================================ */

.vs-main { padding-bottom: 20px; }

.vs-hero { padding: 62px 0 20px; text-align: center; }
.vs-hero .eyebrow { justify-content: center; display: inline-flex; }
.vs-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 16ch; margin: 0 auto; }
.vs-hero h1 .accent { color: var(--gold-bright); }
.vs-hero p { color: var(--muted); font-size: 1.15rem; max-width: 56ch; margin: 20px auto 0; }
.vs-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* Verdict / honest note strip */
.vs-honest {
  max-width: 720px; margin: 34px auto 0; padding: 18px 22px;
  background: rgba(255,255,255,0.02); border: 1px dashed var(--line);
  border-radius: var(--radius); color: var(--muted); font-size: 0.96rem; text-align: center;
}
.vs-honest strong { color: var(--gold-bright); }

/* ---------- Comparison table ---------- */
.vs-table-wrap { max-width: 960px; margin: 0 auto; padding: 40px 0; overflow-x: auto; }
.vs-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 620px; }
.vs-table th, .vs-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.vs-table thead th { font-family: var(--ff-display); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.vs-table thead th.col-us { color: var(--gold-bright); }
.vs-table tbody th { font-weight: 600; color: var(--text); font-size: 0.98rem; width: 30%; }
.vs-table td { color: var(--muted); font-size: 0.96rem; }
.vs-table .col-us { background: linear-gradient(180deg, rgba(201, 150, 47,0.07), rgba(201, 150, 47,0.02)); color: var(--text); }
.vs-table td.col-us { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.vs-table thead th.col-us { border-radius: var(--radius-sm) var(--radius-sm) 0 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
.vs-table tbody tr:last-child td.col-us { border-bottom: 1px solid var(--line); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.vs-mark { color: var(--gold-bright); font-weight: 700; margin-right: 6px; }
.vs-x { color: var(--muted-2); font-weight: 700; margin-right: 6px; }

/* ---------- Cost / pain blocks ---------- */
.vs-section { padding: 56px 0; }
.vs-section-head { max-width: 660px; margin: 0 auto 40px; text-align: center; }
.vs-section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.vs-section-head p { color: var(--muted); font-size: 1.06rem; margin-top: 14px; }

.vs-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.vs-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.vs-card h3 { font-size: 1.15rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.vs-card h3 .vs-ic { color: var(--gold-bright); font-size: 1.2rem; }
.vs-card p { color: var(--muted); font-size: 0.96rem; }
.vs-card .vs-old { color: var(--muted-2); font-size: 0.86rem; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.vs-card .vs-old b { color: var(--text); font-weight: 600; }

/* Migration steps */
.vs-steps { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; counter-reset: vs; list-style: none; padding: 0; }
.vs-steps li { display: flex; gap: 16px; align-items: flex-start; }
.vs-steps li::before {
  counter-increment: vs; content: counter(vs);
  font-family: var(--ff-display); font-weight: 700; color: #02181d;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none;
}
.vs-steps strong { display: block; font-family: var(--ff-display); font-size: 1.05rem; margin-bottom: 3px; }
.vs-steps span { color: var(--muted); font-size: 0.96rem; }

/* CTA band reuse */
.vs-cta { margin-top: 20px; border-top: 1px solid var(--line-soft); background: linear-gradient(180deg, rgba(201, 150, 47,0.08), transparent); padding: 64px 0; }
.vs-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.vs-cta-inner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.vs-cta-inner p { color: var(--muted); margin: 14px auto 24px; font-size: 1.05rem; }
.vs-cta-inner .btn + .btn { margin-left: 10px; }

/* FAQ reuse from blog if present; standalone fallback */
.vs-faq { max-width: 720px; margin: 0 auto; }
.vs-faq h2 { font-size: 1.6rem; margin-bottom: 8px; text-align: center; }
.vs-faq details { border-bottom: 1px solid var(--line-soft); padding: 6px 0; }
.vs-faq summary { cursor: pointer; font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; color: var(--text); padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.vs-faq summary::-webkit-details-marker { display: none; }
.vs-faq summary::after { content: "+"; color: var(--gold-bright); font-size: 1.3rem; line-height: 1; flex: none; }
.vs-faq details[open] summary::after { content: "−"; }
.vs-faq details p { color: var(--muted); padding: 0 0 14px; }

@media (max-width: 720px) {
  .vs-cards { grid-template-columns: 1fr; }
  .vs-cta-inner .btn { display: block; width: 100%; }
  .vs-cta-inner .btn + .btn { margin-left: 0; margin-top: 10px; }
}
