/* ── ezsubs vs. comparison pages — exact match to main landing design system ── */
:root {
  --bg: #070b11;
  --bg2: #090d14;
  --surface: rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.07);
  --line2: rgba(255,255,255,.12);
  --text: #e9f1f5;
  --muted: #8a9aa6;
  --dim: #4a5a66;
  --brand: #00e5c8;
  --cyan: #00b4d8;
  --grad: linear-gradient(135deg,#00e5c8 0%,#00b4d8 100%);
  --grad-r: linear-gradient(135deg,#00b4d8 0%,#00e5c8 100%);
  --ring: rgba(0,229,200,.35);
  --navbg: rgba(7,11,17,.82);
  --ok: #10b981;
  --danger: #ef4444;
  --warn: #f59e0b;
  --font: 'Inter', system-ui, sans-serif;
  --font-head: 'Montserrat', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3 { font-family: var(--font-head); letter-spacing: -.03em; line-height: 1.05; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── Buttons — identical to landing page ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  border-radius: 12px; padding: 12px 22px;
  cursor: pointer; border: none;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s;
  position: relative; white-space: nowrap; text-decoration: none;
}
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line2); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-grad { background: var(--grad); color: #03151a; box-shadow: 0 4px 24px var(--ring); overflow: hidden; }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--ring); }
.btn-lg { padding: 15px 30px; font-size: 15px; border-radius: 14px; }

/* ── Nav — identical to landing page ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navbg);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.logo {
  font-family: var(--font-head); font-weight: 900; font-size: 24px; letter-spacing: -.04em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .18s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── Hero ── */
.vs-hero { padding: 100px 0 60px; text-align: center; }
.vs-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px; background: rgba(0,229,200,.07);
  border: 1px solid rgba(0,229,200,.18); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--brand);
  margin-bottom: 28px; letter-spacing: .03em;
}
.vs-logos-row {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.vs-logo-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 12px;
  font-size: 14px; font-weight: 700;
  background: rgba(255,255,255,.05); border: 1px solid var(--line2);
}
.vs-logo-pill.ez { border-color: rgba(0,229,200,.3); background: rgba(0,229,200,.06); }
.vs-logo-icon { width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vs-logo-icon svg { width: 100%; height: 100%; }
.vs-sep { font-size: 13px; font-weight: 700; color: var(--dim); }
.vs-h1 { font-size: clamp(30px,5vw,58px); font-weight: 900; margin-bottom: 20px; }
.vs-sub { font-size: clamp(15px,2vw,18px); color: var(--muted); max-width: 620px; margin: 0 auto 36px; line-height: 1.7; }
.verdict-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.v-chip {
  padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
}
.v-chip.ok { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.2); color: #34d399; }
.v-chip.warn { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.2); color: #fbbf24; }
.v-chip.bad { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.2); color: #f87171; }

/* ── Sections ── */
.vs-section { padding: 64px 0; border-top: 1px solid var(--line); }
.sec-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.sec-h2 { font-size: clamp(22px,3.5vw,34px); font-weight: 900; margin-bottom: 14px; }
.sec-p { color: var(--muted); max-width: 600px; margin-bottom: 32px; line-height: 1.7; }

/* ── Comparison Table ── */
.vs-table-wrap { overflow-x: auto; margin: 32px 0; border-radius: 16px; border: 1px solid var(--line); }
.vs-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
.vs-table th {
  padding: 14px 20px; text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); background: rgba(255,255,255,.03); border-bottom: 1px solid var(--line);
}
.vs-table th.col-ez { background: rgba(0,229,200,.05); color: var(--brand); }
.vs-table td { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.03); vertical-align: middle; }
.vs-table td.col-ez { background: rgba(0,229,200,.02); }
.vs-table tr:last-child td { border-bottom: none; }
.vs-table tr:hover td { background: rgba(255,255,255,.025); }
.vs-table tr:hover td.col-ez { background: rgba(0,229,200,.04); }
.feat-label { font-weight: 500; color: var(--text); }
.feat-sub { font-size: 12px; color: var(--dim); margin-top: 2px; }
.yes { color: #34d399; font-weight: 700; }
.no { color: #f87171; font-weight: 700; }
.partial { color: #fbbf24; font-weight: 700; }
.price-tag { font-weight: 800; font-size: 15px; }
.price-note { font-size: 11px; color: var(--dim); margin-top: 2px; }

/* ── Who section ── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.who-card { padding: 28px; background: var(--surface); border-radius: 16px; border: 1px solid var(--line); }
.who-card.ez-card { border-color: rgba(0,229,200,.2); background: rgba(0,229,200,.04); }
.who-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px;
}
.who-label svg { width: 18px; height: 18px; flex-shrink: 0; }
.who-label.ez { color: var(--brand); }
.who-label.them { color: var(--muted); }
.who-h3 { font-family: var(--font-head); font-size: 18px; font-weight: 900; margin-bottom: 14px; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.who-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.who-list li .ck { color: #34d399; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.who-card.them-card .who-list li .ck { color: var(--dim); }

/* ── Pros/Cons ── */
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.pc-card { padding: 24px; background: var(--surface); border-radius: 16px; border: 1px solid var(--line); }
.pc-head { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.pc-head.pros { color: #34d399; }
.pc-head.cons { color: #f87171; }
.pc-list { display: flex; flex-direction: column; gap: 10px; }
.pc-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.pc-dot { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.pc-dot.pro { background: rgba(16,185,129,.12); color: #34d399; }
.pc-dot.con { background: rgba(239,68,68,.12); color: #f87171; }

/* ── Pricing cards ── */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; margin: 32px 0; }
.price-card { padding: 28px; background: var(--surface); border-radius: 16px; border: 1px solid var(--line); text-align: center; }
.price-card.winner { border-color: rgba(0,229,200,.3); background: rgba(0,229,200,.04); }
.winner-badge {
  display: inline-block; padding: 4px 14px; background: var(--grad);
  border-radius: 100px; font-size: 11px; font-weight: 700; color: #03151a; margin-bottom: 14px;
}
.pc-logo-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.pc-logo-box { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.pc-logo-box svg { width: 24px; height: 24px; }
.pc-name { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.pc-amount { font-family: var(--font-head); font-size: 38px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-card.winner .pc-amount { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pc-period { font-size: 12px; color: var(--dim); margin-bottom: 16px; }
.pc-feats { text-align: left; display: flex; flex-direction: column; gap: 7px; }
.pc-feat { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.pc-feat::before { content: '✓'; color: #34d399; flex-shrink: 0; font-weight: 700; }

/* ── Verdict box ── */
.verdict-box {
  padding: 48px 40px; background: rgba(0,229,200,.04);
  border: 1px solid rgba(0,229,200,.18); border-radius: 20px;
  text-align: center; margin: 48px 0;
}
.verdict-icon { font-size: 36px; margin-bottom: 14px; }
.verdict-title { font-family: var(--font-head); font-size: clamp(20px,3vw,28px); font-weight: 900; margin-bottom: 12px; }
.verdict-text { color: var(--muted); max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }

/* ── CTA section ── */
.vs-cta { padding: 80px 0; text-align: center; }
.vs-cta h2 { font-family: var(--font-head); font-size: clamp(26px,4.5vw,44px); font-weight: 900; margin-bottom: 16px; }
.vs-cta p { color: var(--muted); margin-bottom: 32px; font-size: 17px; }
.cta-note { font-size: 13px; color: var(--dim); margin-top: 14px; }

/* ── Hub grid ── */
.vs-hub-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 16px; margin: 40px 0; }
.vs-hub-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; transition: all .2s; text-decoration: none; color: inherit;
}
.vs-hub-card:hover { border-color: rgba(0,229,200,.25); transform: translateY(-2px); background: rgba(0,229,200,.03); }
.vs-hub-logo {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden;
}
.vs-hub-logo svg { width: 28px; height: 28px; }
.vs-hub-info { flex: 1; min-width: 0; }
.vs-hub-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.vs-hub-desc { font-size: 13px; color: var(--dim); line-height: 1.4; }
.vs-hub-arrow { color: var(--dim); font-size: 16px; flex-shrink: 0; transition: color .18s; margin-left: 8px; }
.vs-hub-card:hover .vs-hub-arrow { color: var(--brand); }

/* ── Footer ── */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--line); }
.foot-in { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.foot-brand {
  font-family: var(--font-head); font-size: 20px; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px;
}
.foot-desc { font-size: 13px; color: var(--dim); max-width: 280px; line-height: 1.6; }
.foot-links { display: flex; gap: 24px; font-size: 13px; color: var(--dim); flex-wrap: wrap; }
.foot-links a:hover { color: var(--text); }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--dim); flex-wrap: wrap; gap: 12px;
}
.foot-right { display: flex; align-items: center; gap: 16px; }
.foot-legal { display: flex; gap: 12px; font-size: 12px; }
.foot-legal a { color: var(--dim); }
.foot-legal a:hover { color: var(--text); }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.lang-switch a { color: var(--dim); transition: color .18s; }
.lang-switch a:hover { color: var(--text); }

/* ── HTML class aliases ── */
.who-title { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.who-title.ez { color: var(--brand); }
.who-title.them { color: var(--muted); }
.pc-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.pc-title.pros { color: #34d399; }
.pc-title.cons { color: #f87171; }
.pc-features { text-align: left; display: flex; flex-direction: column; gap: 7px; }
.mobile-menu-btn { display: none; }

/* ── Mobile ── */
@media(max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .who-grid, .pc-grid { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr; }
  .vs-hero { padding: 88px 0 48px; }
  .vs-table th, .vs-table td { padding: 11px 14px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
