:root {
  --bg: #0d0a10;
  --bg-card: #16111c;
  --bg-surf: #120d17;
  --bg-surf2: #1e1626;
  --accent: #f43f5e;
  --accent2: #fb7185;
  --accent-grad: linear-gradient(90deg, #e11d48 0%, #f472b6 100%);
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --text: #f5f0f7;
  --text2: #a99bb5;
  --text3: #6b5f78;
  --border: rgba(255, 255, 255, 0.09);
  --border-accent: rgba(244, 63, 94, 0.45);
  --glow: 0 0 30px rgba(244, 63, 94, 0.18);
  --r: 10px;
  --r-lg: 18px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-md: 0 6px 22px rgba(0, 0, 0, 0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  padding-bottom: 66px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent2); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

.cn { max-width: 880px; margin: 0 auto; padding: 0 18px; }
.cn-wide { max-width: 1080px; margin: 0 auto; padding: 0 18px; }

/* ---------- sticky bottom CTA bar ---------- */
.bottombar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(13, 10, 16, 0.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 10px 16px;
}
.bottombar .bb-note { color: var(--text2); font-size: 0.86rem; }
@media (max-width: 560px) { .bottombar .bb-note { display: none; } }
.btn {
  display: inline-block; background: var(--accent-grad); color: #fff !important;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 10px 22px; border-radius: 999px; box-shadow: var(--glow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 0 40px rgba(244, 63, 94, 0.3); }
.btn-sm { padding: 7px 16px; font-size: 0.85rem; }

/* ---------- hero ---------- */
.hero { padding: 52px 0 22px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 700; font-size: 2.1rem;
  line-height: 1.25; margin-bottom: 14px;
}
.hero-meta { color: var(--text3); font-size: 0.88rem; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- verdict box ---------- */
.verdict {
  display: flex; gap: 22px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border-accent);
  border-radius: var(--r-lg); padding: 24px; margin: 26px 0; box-shadow: var(--glow);
  flex-wrap: wrap;
}
.verdict-score {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
  background: var(--accent-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; line-height: 1; flex-shrink: 0;
}
.verdict-score small { display: block; -webkit-text-fill-color: var(--text3); font-size: 0.75rem; font-weight: 500; margin-top: 6px; }
.verdict p { color: var(--text2); font-size: 0.97rem; flex: 1; min-width: 240px; }

/* ---------- toc ---------- */
.toc {
  background: var(--bg-surf); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 24px; margin: 30px 0;
}
.toc h3 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 10px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.06em; }
.toc ol { margin-left: 20px; }
.toc li { padding: 3px 0; font-size: 0.94rem; }

/* ---------- article body ---------- */
article { padding-bottom: 40px; }
article h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.55rem;
  margin: 46px 0 16px; line-height: 1.3; scroll-margin-top: 80px;
}
article h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  margin: 30px 0 12px; scroll-margin-top: 80px;
}
article p { margin-bottom: 16px; color: var(--text); }
article ul, article ol { margin: 0 0 16px 24px; }
article li { margin-bottom: 7px; }
article strong { color: #fff; }
.muted { color: var(--text2); }

/* ---------- rating rows ---------- */
.rating-row {
  display: flex; align-items: center; gap: 14px; margin: 8px 0;
  font-size: 0.93rem;
}
.rating-row .label { width: 190px; flex-shrink: 0; color: var(--text2); }
.rating-bar { flex: 1; height: 8px; background: var(--bg-surf2); border-radius: 999px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--accent-grad); border-radius: 999px; }
.rating-num { width: 44px; text-align: right; font-weight: 600; font-family: var(--font-display); font-size: 0.88rem; }

/* ---------- tables ---------- */
.tbl-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--r); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 540px; }
th {
  background: var(--bg-surf2); text-align: left; padding: 12px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  color: var(--text2); white-space: nowrap;
}
td { padding: 11px 14px; border-top: 1px solid var(--border); vertical-align: top; }
tr:nth-child(even) td { background: rgba(255, 255, 255, 0.015); }
td .yes { color: var(--success); font-weight: 600; }
td .no { color: var(--danger); font-weight: 600; }
td .part { color: var(--warning); font-weight: 600; }

/* ---------- pros/cons ---------- */
.pc-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 22px 0; }
@media (min-width: 700px) { .pc-grid { grid-template-columns: 1fr 1fr; } }
.pc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.pc-card h3 { margin-top: 0 !important; font-size: 1.02rem !important; }
.pc-card.pros h3 { color: var(--success); }
.pc-card.cons h3 { color: var(--danger); }
.pc-card ul { list-style: none; margin-left: 0; }
.pc-card li { padding-left: 26px; position: relative; font-size: 0.93rem; color: var(--text2); }
.pc-card.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.pc-card.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* ---------- CTA box ---------- */
.cta-box {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(244, 114, 182, 0.06));
  border: 1px solid var(--border-accent); border-radius: var(--r-lg);
  padding: 28px 26px; margin: 34px 0; text-align: center;
}
.cta-box h3 { margin: 0 0 8px !important; font-size: 1.2rem !important; }
.cta-box p { color: var(--text2); font-size: 0.94rem; margin-bottom: 18px; }
.cta-note { font-size: 0.8rem; color: var(--text3); margin-top: 12px; margin-bottom: 0 !important; }

/* ---------- pricing cards ---------- */
.plans { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 26px 0; }
@media (min-width: 760px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 22px; text-align: center; position: relative;
}
.plan.hot { border-color: var(--accent); box-shadow: var(--glow); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent-grad); color: #fff; padding: 3px 14px;
  border-radius: 999px; font-size: 0.75rem; font-weight: 700; font-family: var(--font-display); white-space: nowrap;
}
.plan h3 { margin: 0 0 6px !important; font-size: 1.05rem !important; }
.plan-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin: 8px 0 14px; }
.plan-price span { font-size: 0.85rem; color: var(--text2); font-weight: 400; }
.plan ul { list-style: none; margin: 0 0 8px; text-align: left; }
.plan li { padding: 7px 0; font-size: 0.87rem; color: var(--text2); border-bottom: 1px solid var(--border); }
.plan li:last-child { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 4px 0 14px; }
.faq-item h3 { margin: 18px 0 8px !important; font-size: 1.05rem !important; }
.faq-item p { color: var(--text2); font-size: 0.95rem; margin-bottom: 6px; }

/* ---------- info/warn callouts ---------- */
.callout {
  border-left: 3px solid var(--accent); background: var(--bg-surf);
  border-radius: 0 var(--r) var(--r) 0; padding: 16px 20px; margin: 20px 0;
  font-size: 0.94rem; color: var(--text2);
}
.callout strong { color: var(--text); }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--border); margin-top: 50px;
  padding: 34px 0 44px; background: var(--bg-surf);
}
.foot-in { max-width: 1080px; margin: 0 auto; padding: 0 18px; text-align: center; }
.foot-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.foot-links a { color: var(--text2); font-size: 0.88rem; }
.foot-res { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.foot-res a { color: var(--text3); font-size: 0.82rem; }
.badge-18 {
  display: inline-block; background: var(--bg-surf2); border: 1px solid var(--border);
  border-radius: 6px; padding: 2px 10px; font-size: 0.8rem; font-weight: 700; color: var(--text2);
}
.foot-copy { color: var(--text3); font-size: 0.82rem; margin-bottom: 8px; }
.foot-disc { color: var(--text3); font-size: 0.78rem; max-width: 640px; margin: 0 auto; line-height: 1.6; }

@media (max-width: 640px) {
  .hero h1 { font-size: 1.6rem; }
  article h2 { font-size: 1.3rem; }
}
