
/* 
:root {
  --bg: #ffffff;
  --bg-raised: #f4f6f9;
  --bg-card: #f9fafb;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --accent: #746DF0;
  --accent-soft: rgba(116,109,240,0.08);
  --accent-border: rgba(116,109,240,0.2);
  --text-primary: #0d1117;
  --text-secondary: #4a5568;
  --text-muted: #8a96a8;
  --green: #0d6e4c;
  --green-soft: rgba(13,110,76,0.07);
  --green-border: rgba(13,110,76,0.18);
  --amber: #b45309;
  --amber-soft: rgba(180,83,9,0.07);
  --amber-border: rgba(180,83,9,0.18);
  --red-soft: rgba(185,28,28,0.06);
  --red-border: rgba(185,28,28,0.15);
  --red: #b91c1c;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Courier New', monospace;
  --max-w: 1240px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none; z-index: 0;
} */


/* ── COMPARISON SWITCHER ── */
#switcher {
  position: sticky; 
  top: var(--nav-h); 
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow-x: auto;
}
.sw-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.sw-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); padding: 16px 0; flex-shrink: 0; margin-right: 28px; display: none; }
.sw-tabs { display: flex; }
.sw-tab {
  padding: 0 26px; height: 56px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-muted); background: none; border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer; transition: all .18s; white-space: nowrap;
}
.sw-tab:hover { color: var(--text-primary); background: var(--bg-card); }
.sw-tab.active { color: var(--accent); border-bottom-color: var(--accent); background: var(--accent-soft); }
.sw-competitor-tag {
  font-family: var(--font-mono); font-size: 9px;
  padding: 2px 7px; border-radius: 3px; letter-spacing: .06em;
}
.sw-tab .tag-wk  { background: #fef3c7; color: #92400e; }
.sw-tab .tag-rc  { background: #ede9fe; color: #5b21b6; }
.sw-tab .tag-hb  { background: #dcfce7; color: #166534; }
.sw-tab.active .tag-wk { background: rgba(15,100,220,0.1); color: var(--accent); }
.sw-tab.active .tag-rc { background: rgba(15,100,220,0.1); color: var(--accent); }
.sw-tab.active .tag-hb { background: rgba(15,100,220,0.1); color: var(--accent); }

/* ── PAGE PANELS ── */
.comparison-panel { display: none; }
.comparison-panel.active { display: block; }

/* ── HERO SECTION ── */
.cmp-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; width: 900px; height: 580px; top: -60px; right: -180px;
  background: radial-gradient(ellipse, rgba(15,100,220,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.cmp-hero .cmp_hero_title { font-family: var(--font-display); font-size: clamp(36px,4.8vw,64px); font-weight: 400; line-height: 1.06; letter-spacing: -.026em; max-width: 780px; }
.cmp-hero .cmp_hero_title em { font-style: italic; color: var(--accent); }
/* ── VERDICT STRIP ── */
.verdict-strip {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.verdict-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.vd-cell { background: var(--bg-raised); padding: 30px 28px; }
.vd-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.vd-val { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--text-primary); line-height: 1.2; letter-spacing: -.01em; }
.vd-val em { font-style: italic; color: var(--accent); }
.vd-sub { margin-top: 7px; font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }

/* ── TWO-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── SECTION ── */
.cmp-section { padding: 88px 0; border-bottom: 1px solid var(--border); }
.cmp-section.raised { background: var(--bg-raised); }
.cmp-section.raised .section_title { 
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 10px;
    transition-delay: 0.12s;
}
.cmp-section.raised .section_para {
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 44px;
    line-height: 1.65;
    transition-delay: 0.18s;
 }

/* ── SECTION HEADINGS ── */
.cmp-section h2 { font-family: var(--font-display); font-size: clamp(26px,3.2vw,42px); font-weight: 400; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 20px; }
.cmp-section h2 em { font-style: italic; color: var(--accent); }
.cmp-section p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.72; margin-bottom: 15px; }


.cmp-section strong { color: var(--text-primary); font-weight: 500; }
.tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; font-weight: 500; display: inline-block; margin-bottom: 16px; }
.tag-blue  { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }
.tag-amber { background: var(--amber-soft); color: var(--amber); border: 1px solid var(--amber-border); }
.tag-green { background: var(--green-soft); color: var(--green); border: 1px solid var(--green-border); }
.tag-red   { background: var(--red-soft); color: var(--red); border: 1px solid var(--red-border); }

/* ── STRENGTH / GAP LISTS ── */
.item-list { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.il-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 15px;
  border-radius: 7px;
  font-size: 14px; line-height: 1.5;
}
.il-item.strength { background: var(--green-soft); border: 1px solid var(--green-border); color: var(--text-secondary); }
.il-item.gap      { background: var(--red-soft);   border: 1px solid var(--red-border);   color: var(--text-secondary); }
.il-item.excurit  { background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--text-secondary); }
.il-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.il-text strong { color: var(--text-primary); font-weight: 500; }

/* ── FEATURE TABLE ── */
.ft-wrap { overflow-x: auto; margin-top: 0; }
.ft-wrap .smalltext { font-size: 13.5px; }
.ftable { width: 100%; border-collapse: collapse; }
.ftable th {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 14px 18px; text-align: left;
  border-bottom: 2px solid var(--border);
  background: var(--bg-card);
}
.ftable th.ex-col { color: var(--accent); background: var(--accent-soft); border-bottom-color: var(--accent); }
.ftable th.comp-col { border-bottom-color: var(--border-strong); }
.ftable td {
  padding: 13px 18px; font-size: 14px;
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.ftable td:first-child { color: var(--text-secondary); font-size: 13.5px; }
.ftable td.ex-col { background: rgba(15,100,220,0.03); }
.ftable tr:hover td { background: var(--bg-card); }
.ftable tr:hover td.ex-col { background: var(--accent-soft); }
.ftable tr.cat-row td {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-muted);
  background: var(--bg-raised); padding: 9px 18px;
  border-bottom: 1px solid var(--border);
}
.ftable tr.cat-row td.ex-col { background: var(--accent-soft); color: var(--accent); }
.ftable tfoot td { padding: 14px 18px; font-size: 12.5px; color: var(--text-muted); border-top: 1px solid var(--border); line-height: 1.55; }

.ck-y { color: var(--green); font-weight: 600; font-size: 15px; }
.ck-n { color: var(--text-muted); font-size: 15px; }
.ck-p { font-family: var(--font-mono); font-size: 11px; color: var(--amber); }
.ck-e { font-family: var(--font-mono); font-size: 10.5px; color: var(--accent); font-weight: 500; }

/* ── WHO WINS CARD ── */
.who-wins {
  padding: 88px 0;
  background: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ww-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.07); }
.ww-cell { background: var(--text-primary); padding: 52px 44px; }
.ww-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.ww-headline { font-family: var(--font-display); font-size: clamp(22px,2.8vw,34px); font-weight: 400; color: #fff; letter-spacing: -.015em; line-height: 1.15; margin-bottom: 16px; }
.ww-headline em { font-style: italic; color: #7bb3f7; }
.ww-body { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.68; }
.ww-body strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.ww-cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--text-primary); border: none; padding: 12px 24px; border-radius: 7px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-wh { background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); padding: 11px 22px; border-radius: 7px; font-family: var(--font-body); font-size: 14px; cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-outline-wh:hover { border-color: rgba(255,255,255,0.45); color: #fff; }

/* ── SEO PROSE + FAQ ── */
.prose-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.prose-col h2 { font-family: var(--font-display); font-size: clamp(26px,3.2vw,40px); font-weight: 400; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 22px; }
.prose-col h2 em { font-style: italic; color: var(--accent); }
.prose-col p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.72; margin-bottom: 15px; }
.prose-col strong { color: var(--text-primary); font-weight: 500; }
.faq { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); padding: 18px 0; }
.faq-q { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.faq-a { font-size: 14.5px; color: var(--text-secondary); line-height: 1.68; }

/* ── CTA ── */
.cmp-cta { padding: 96px 0 112px; }
.cmp-cta .cta-mono {
    margin-bottom: 22px;
}
.cmp-cta p {
    max-width: 420px;
    margin: 0 auto 38px;
}
/* ── FADE UP ── */
.fade-up { opacity:0; transform:translateY(22px); transition:opacity .6s ease,transform .6s ease; }
.fade-up.in { opacity:1; transform:none; }

/* ── RESPONSIVE ── */
@media(max-width:1199px) {
  .vd-cell {
    padding: 24px 20px;
  }
  .ww-cell {
      padding: 24px;
  }
  .two-col {
      gap: 80px 30px;
  }
}
@media(max-width:991px) {
  .two-col { grid-template-columns:1fr; gap:44px; }
  .two-col.reverse { direction:ltr; }
  .verdict-grid { grid-template-columns: repeat(2,1fr); }
  .ww-grid { grid-template-columns:1fr; }
  .ww-cell {
      padding: 30px 0px;
  }
  .prose-faq-grid { grid-template-columns:1fr; gap:48px; }
}
@media(max-width:991px) {
  .ftable td:first-child {
      font-size: 12px;
  }
  .ftable th {
    padding: 12px 10px;
  }
  .ftable td {
      padding: 12px 10px;
      font-size: 12px;
      min-width: 150px;
  }
  .ftable td .ck-y {
      font-size: 12px;
  }
  .vd-cell {
      padding: 20px;
  }
}
@media(max-width:640px) {
  .sw-inner { padding:0 20px; }
  .sw-tab { padding:0 14px; font-size:13px; }
  .verdict-grid {grid-template-columns: repeat(1,1fr); }
  .vd-cell {
      padding: 20px 5px;
  }
}