/* =================================================================
   Willow — comparison pages (comparison-*.html)

   Lifted out of 32 byte-identical inline <style> blocks (28 EN + 4 NL).
   Inline CSS is re-downloaded on every page view and never cached; as one
   file the browser fetches it once for the whole comparison section.

   Loaded only by the comparison pages, after styles.css.
   ================================================================= */
/* ============ Comparison page ============ */
.cmp-head h1 .vs { color: var(--ink-3); font-weight: 500; font-style: italic; }

/* verdict at a glance */
.verdict-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 56px;
}
.vcard {
  border-radius: var(--r-xl); padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.vcard.willow { background: var(--ink); color: var(--cream); }
.vcard.rival { background: var(--white); border: 1px solid var(--rule); }
.vcard .v-lab {
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.08em;
  text-transform: uppercase; display: flex; align-items: center; gap: 8px;
}
.vcard.willow .v-lab { color: var(--blue-mid); }
.vcard.rival .v-lab { color: var(--ink-3); }
.vcard h2 { font-size: 25px; letter-spacing: -0.02em; line-height: 1.12; }
.vcard.willow h2 { color: var(--cream); }
.vcard ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vcard li { font-size: 15px; line-height: 1.45; padding-left: 26px; position: relative; }
.vcard.willow li { color: var(--on-dark); }
.vcard.rival li { color: var(--ink-2); }
.vcard.willow li::before { content: "✓"; position: absolute; left: 3px; top: 0; color: var(--blue-mid); font-weight: 700; font-size: 14px; }
.vcard.rival li::before { content: "→"; position: absolute; left: 2px; top: 0; color: var(--ink-4); font-weight: 600; }
.vcard .best {
  margin-top: auto; padding-top: 18px; font-size: 13px; line-height: 1.5;
}
.vcard.willow .best { border-top: 1px solid rgba(255,255,255,0.16); color: var(--on-dark-2); }
.vcard.rival .best { border-top: 1px solid var(--rule); color: var(--ink-3); }
.vcard .best b { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 6px; font-weight: 500; }
.vcard.willow .best b { color: var(--blue-mid); }
.vcard.rival .best b { color: var(--blue); }

/* platform screenshot band */
.cmp-shot-band { padding: 96px 0; }
.cmp-shot {
  border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: 0 30px 80px -50px rgba(10,10,10,0.5);
}
.cmp-shot .bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-bottom: 1px solid var(--rule); background: var(--paper);
  font-family: var(--mono); font-size: var(--t-micro); color: var(--ink-3); letter-spacing: 0.02em;
}
.cmp-shot .bar .dots { display: flex; gap: 6px; margin-right: 8px; }
.cmp-shot .bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--rule); display: block; }
.cmp-shot .bar b { color: var(--ink); font-weight: 500; }
.cmp-shot img { display: block; width: 100%; height: auto; }

/* feature table */
.ct-wrap { width: 100%; margin-top: 40px; }
.ct {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--rule); border-radius: var(--r-md); overflow: hidden;
  background: var(--white);
}
.ct th, .ct td { text-align: left; vertical-align: top; padding: 20px 22px; border-bottom: 1px solid var(--rule); }
.ct thead th { background: var(--paper); vertical-align: bottom; }
.ct thead .col-feat { width: 22%; font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.ct thead .col-name { width: 39%; }
.ct .brand { display: flex; flex-direction: column; gap: 4px; }
.ct .brand .nm { font-size: 19px; font-weight: 600; letter-spacing: -0.014em; color: var(--ink); }
.ct .brand .tag { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.07em; text-transform: uppercase; }
.ct .col-willow { background: rgba(16,51,213,0.04); border-left: 1px solid rgba(16,51,213,0.14); border-right: 1px solid rgba(16,51,213,0.14); }
.ct .col-willow .nm { color: var(--blue); }
.ct .col-willow .tag { color: var(--blue); }
.ct .col-rival .tag { color: var(--ink-3); }
.ct tbody tr.section td {
  background: var(--paper); font-family: var(--mono); font-size: var(--t-micro);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue);
  padding: 12px 22px; font-weight: 500;
}
.ct td.feat { font-weight: 600; color: var(--ink); font-size: 14px; }
.ct td.cell { font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.ct td.col-willow { background: rgba(16,51,213,0.04); border-left: 1px solid rgba(16,51,213,0.14); border-right: 1px solid rgba(16,51,213,0.14); color: var(--ink); }
.ct tbody tr:last-child td { border-bottom: 0; }
.ct .mk { font-size: 15px; font-weight: 700; margin-right: 7px; line-height: 1; }
.ct .mk.yes { color: var(--blue); }
.ct .mk.no { color: var(--ink-4); }

/* chatgpt second opinion */
.second {
  margin-top: 40px; background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r-xl); padding: 36px 40px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.second .txt { flex: 1 1 380px; }
.second .v-lab { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.second h3 { font-size: 24px; letter-spacing: -0.018em; margin-top: 12px; line-height: 1.15; }
.second p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-top: 10px; max-width: 56ch; }

/* other comparisons */
.others { padding: 96px 0; border-top: 1px solid var(--rule); }
.other-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.other-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--rule); background: var(--white);
  font-size: 14px; font-weight: 500; color: var(--ink);
  transition: all 0.15s;
}
.other-chip:hover { border-color: var(--ink); }
.other-chip .vs { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.06em; color: var(--ink-4); text-transform: uppercase; }
.other-chip.soon { color: var(--ink-4); }
.other-chip.soon .vs { color: var(--ink-4); }

/* FAQ (matches site pattern) */
.faq { padding: 0 0 96px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; max-width: 880px; }
.faq-item { border-top: 1px solid var(--rule); padding: 20px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 19px; font-weight: 500; letter-spacing: -0.012em; gap: 32px; }
.faq-q .indic { width: 28px; height: 28px; border-radius: 50%; background: var(--cream-2); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .indic { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.2s; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }

@media (max-width: 1100px) {
  .verdict-grid { grid-template-columns: 1fr; }
  .ct-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--rule); border-radius: var(--r-lg); }
  .ct { min-width: 720px; border: 0; }
  .second { padding: 28px; }
}
