/* ===== Design tokens (reference) ===== */
/* --bg: #0D0D1A; --bg-card: #0D0D1A; --bg-elevated: #1C1C32; --bg-surface: #16162A;
   --pink: #EC4899; --purple: #A855F7; --cyan: #22D3EE; --text-bright: #F8F8FF;
   --text-muted: #9CA3AF; --text-dim: #6B7280; --gold: #F59E0B; --green: #10B981;
   --gradient: linear-gradient(135deg, #EC4899, #A855F7); --border: rgba(168,85,247,0.2);
   --border-pink: rgba(236,72,153,0.4); --glow-pink: 0 0 28px rgba(236,72,153,0.2);
   --glow-purple: 0 0 28px rgba(168,85,247,0.18); */

/* ===== Global ===== */
body {
  background: #0D0D1A;
  color: #F8F8FF;
  font-family: 'Inter', sans-serif;
}

.text-gradient {
  background: linear-gradient(135deg, #EC4899, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  box-shadow: 0 0 30px rgba(236,72,153,0.35);
  color: white !important;
  border: none;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  text-decoration: none !important;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn-glow:hover {
  box-shadow: 0 0 45px rgba(236,72,153,0.6);
  transform: translateY(-2px);
  color: white !important;
}

.btn-outline-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(236,72,153,0.5);
  color: #EC4899 !important;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.btn-outline-pink:hover {
  background: rgba(236,72,153,0.1);
  border-color: #EC4899;
  color: #EC4899 !important;
}

.fp-badge {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 999px;
  background: rgba(236,72,153,0.06);
  border: 1px solid rgba(236,72,153,0.5);
  color: #EC4899;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  cursor: default;
  user-select: none;
  box-shadow:
    0 0 10px rgba(236,72,153,0.25),
    0 0 24px rgba(236,72,153,0.12),
    inset 0 0 10px rgba(236,72,153,0.05);
}

.fp-cat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
  min-height: 140px;
  background: #0D0D1A;
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 16px;
  padding: 20px 18px;
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.fp-cat-card:hover {
  border-color: #A855F7;
  box-shadow: 0 0 28px rgba(168,85,247,0.18);
  transform: translateY(-3px);
}
@media (max-width: 767px) { .fp-cat-card { padding: 20px 18px; } }
@media (min-width: 768px) {
  .fp-cat-card {
    align-items: center;
    text-align: center;
  }
  .fp-cat-card__icon { margin-left: auto; margin-right: auto; }
}
.fp-cat-card__icon {
  display: block; font-size: 30px;
  line-height: 1; margin-bottom: 12px;
}
.fp-cat-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  color: #F8F8FF !important; margin-bottom: 6px; line-height: 1.3;
  -webkit-text-fill-color: #F8F8FF;
}
@media (max-width: 480px) { .fp-cat-card__title { font-size: 13px; } }
.fp-cat-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #9CA3AF; line-height: 1.4; margin: 0;
}

.fp-section {
  padding: 72px 0;
  border-top: 1px solid rgba(168,85,247,0.12);
  background: transparent;
}
@media (max-width: 767px) { .fp-section { padding: 48px 0; } }
.fp-section__header { text-align: center; margin-bottom: 40px; }
.fp-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 34px);
  color: #F8F8FF; margin-bottom: 8px;
}
.fp-section__sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: #9CA3AF;
}

.fp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  padding: 2px;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
  background: #16162A;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(168,85,247,0.35);
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.1),
    0 0 18px rgba(168,85,247,0.15),
    inset 0 0 24px rgba(168,85,247,0.04);
  transition: box-shadow 0.25s ease;
}
.comparison-table:hover {
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.5),
    0 0 32px rgba(168,85,247,0.28),
    inset 0 0 32px rgba(168,85,247,0.07);
}
.comparison-table thead tr {
  border-bottom: 1px solid rgba(168,85,247,0.18);
}
.comparison-table thead th {
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; color: #6B7280;
  text-align: left; text-transform: uppercase; letter-spacing: 0.07em;
  white-space: nowrap; background: #16162A;
}
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(168,85,247,0.08);
  transition: background 0.2s ease;
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:first-child { background: rgba(236,72,153,0.04); }
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.comparison-table tbody tr:first-child:hover { background: rgba(236,72,153,0.07); }
.comparison-table td {
  padding: 15px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #9CA3AF;
  vertical-align: middle; border: none;
}
.comparison-table td:first-child {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 14px; color: #F8F8FF; white-space: nowrap;
}
.comparison-table .emoji { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }
.comparison-table td:nth-child(7) { font-weight: 700; font-size: 14px; }
.comparison-table td:nth-child(7)::before { display: none; content: none; }
.comparison-table td:nth-child(5) { white-space: nowrap; font-weight: 500; color: #F8F8FF; }
.fp-table__type { vertical-align: middle; }
.fp-table__type-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.fp-table__type-badge--nsfw { background: rgba(236,72,153,0.2); color: #EC4899; }
.fp-table__type-badge--sfw { background: rgba(16,185,129,0.2); color: #10B981; }
.comparison-table td:last-child a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600; color: #EC4899;
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.comparison-table td:last-child a:hover { color: #F472B6; text-decoration: none; }
.comparison-table td:last-child { color: #4B4B6A; font-size: 13px; }
.fp-table__platform { display: flex; align-items: center; gap: 12px; }
.fp-table__logo-wrap { position: relative; flex-shrink: 0; }
.fp-table__logo { width: 28px; height: 28px; border-radius: 8px; object-fit: cover; }
.fp-table__rank {
  position: absolute; bottom: -4px; right: -4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: white; font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.fp-table__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: #F8F8FF; font-size: 14px; white-space: nowrap; text-decoration: none; transition: color 0.2s; }
a.fp-table__name:hover { color: #EC4899; }
.fp-table__stars { display: flex; align-items: center; gap: 2px; }
.fp-table__score { font-size: 12px; font-weight: 600; color: #F59E0B; margin-left: 4px; }
.fp-table__price { font-size: 13px; color: #9CA3AF; white-space: nowrap; }
.fp-table__bestfor { font-size: 13px; color: #9CA3AF; }
.fp-table__link { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; color: #EC4899; text-decoration: none; white-space: nowrap; transition: color 0.2s; }
.fp-table__link:hover { color: #F472B6; }
.fp-table__check { font-size: 16px; font-weight: 700; }
.fp-table__check--yes { color: #10B981; }
.fp-table__check--no  { color: #6B7280; }
.fp-table__row { border-bottom: 1px solid rgba(168,85,247,0.08); transition: background 0.2s ease; }
.fp-table__row:last-child { border-bottom: none; }
.fp-table__row:hover { background: rgba(255,255,255,0.025); }

/* Top Picks by Category — coherent with site dark theme */
.top-picks-section {
  padding: 60px 20px;
  background: transparent;
  border-top: 1px solid rgba(168,85,247,0.12);
}
.top-picks-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.top-picks-section__title {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: #F8F8FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.top-picks-section__subtitle {
  text-align: center;
  color: #9CA3AF;
  font-size: 0.95rem;
  margin-bottom: 36px;
}
.top-picks-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.top-picks-card {
  background: #16162A;
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.top-picks-card:hover {
  border-color: #A855F7;
  box-shadow: 0 0 28px rgba(168,85,247,0.18);
}
.top-picks-card__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
}
.top-picks-card__badge--pink   { background: rgba(236,72,153,0.2); color: #EC4899; }
.top-picks-card__badge--green  { background: rgba(16,185,129,0.2); color: #10B981; }
.top-picks-card__badge--purple { background: rgba(168,85,247,0.2); color: #A855F7; }
.top-picks-card__badge--teal   { background: rgba(34,211,238,0.2); color: #22D3EE; }
.top-picks-card__badge--orange { background: rgba(245,158,11,0.2); color: #F59E0B; }
.top-picks-card__category {
  font-size: 0.75rem;
  color: #9CA3AF;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.top-picks-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #F8F8FF;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.top-picks-card__best-for {
  font-size: 0.85rem;
  color: #9CA3AF;
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}
.top-picks-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #9CA3AF;
  border-top: 1px solid rgba(168,85,247,0.12);
  padding-top: 10px;
}
.top-picks-card__rating { color: #F59E0B; font-weight: 700; }
.top-picks-card__ctas { display: flex; gap: 8px; margin-top: 4px; }
.top-picks-card__cta-primary {
  flex: 1;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: #fff !important;
  text-align: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: box-shadow 0.2s, transform 0.2s;
}
.top-picks-card__cta-primary:hover {
  color: #fff !important;
  box-shadow: 0 0 24px rgba(236,72,153,0.4);
  transform: translateY(-1px);
}
.top-picks-card__cta-secondary {
  flex: 1;
  background: transparent;
  color: #EC4899 !important;
  text-align: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid rgba(236,72,153,0.5);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.top-picks-card__cta-secondary:hover {
  background: rgba(236,72,153,0.1);
  border-color: #EC4899;
  color: #EC4899 !important;
}
@media (max-width: 640px) {
  .top-picks-section__grid { grid-template-columns: 1fr; }
}

/* ─── Compare page (1vs1) — dark theme ─── */
.compare-page { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.compare-header { text-align: center; margin-bottom: 40px; }
.compare-header h1 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800; color: #F8F8FF; font-family: 'Plus Jakarta Sans', sans-serif; }
.compare-header p { color: #9CA3AF; font-size: 0.9rem; margin-top: 6px; }

.compare-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .compare-two-col { grid-template-columns: 1fr; }
}

.compare-verdict__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .compare-verdict__grid { grid-template-columns: 1fr; }
  .compare-verdict__grid .compare-verdict__badge-wrap { order: -1; }
}

.compare-tool-card {
  border: 2px solid rgba(168,85,247,0.2);
  border-radius: 14px;
  padding: 24px;
  background: #16162A;
  color: #F8F8FF;
}
.compare-tool-card--winner {
  border-color: #10B981;
  background: rgba(16,185,129,0.08);
}
.compare-tool-card__name { font-size: 1.1rem; font-weight: 800; color: #F8F8FF; margin: 0 0 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.compare-tool-card__label { font-size: 0.95rem; font-weight: 700; color: #F8F8FF; margin: 0 0 10px; font-family: 'Plus Jakarta Sans', sans-serif; }
.compare-tool-card__rating { color: #F59E0B; font-size: 0.9rem; margin: 0 0 8px; }
.compare-tool-card__summary { font-size: 0.9rem; color: #9CA3AF; line-height: 1.5; margin: 0 0 10px; }
.compare-tool-card__overall { font-size: 0.95rem; color: #9CA3AF; margin: 0; }
.compare-tool-card__overall strong { color: #F8F8FF; }

.compare-verdict__badge-wrap { display: flex; justify-content: center; align-items: center; padding: 8px 0; }
.compare-winner-badge {
  text-align: center;
  background: #10B981;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 30px;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.compare-winner-badge--tie { background: #6B7280; }
.compare-winner-badge--small { display: inline-block; margin-top: 8px; font-size: 0.8rem; padding: 6px 14px; }

.compare-features { margin: 0 0 12px; padding-left: 1.2em; color: #9CA3AF; font-size: 0.9rem; }
.compare-cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: box-shadow 0.2s, transform 0.2s;
}
.compare-cta-primary:hover { color: #fff !important; box-shadow: 0 0 24px rgba(236,72,153,0.4); transform: translateY(-1px); }
.compare-cta-block { text-align: center; width: 100%; box-sizing: border-box; }

.compare-table-wrap { margin-bottom: 32px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th,
.compare-table td { padding: 12px 16px; border-bottom: 1px solid rgba(168,85,247,0.15); color: #F8F8FF; }
.compare-table th { background: #16162A; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: #9CA3AF; }
.compare-table .score-bar-wrap { background: rgba(168,85,247,0.15); border-radius: 99px; height: 8px; overflow: hidden; margin-top: 4px; }
.compare-table .score-bar { height: 8px; border-radius: 99px; background: #6B7280; }
.compare-table .score-bar--winner { background: #10B981; }
.score-value { font-weight: 700; font-size: 0.9rem; color: #9CA3AF; }
.score-value--winner { color: #10B981; }

@media (max-width: 640px) {
  .compare-table thead { display: none; }
  .compare-table tr { display: block; margin-bottom: 12px; border: 1px solid rgba(168,85,247,0.2); border-radius: 10px; padding: 12px; background: #16162A; }
  .compare-table td { display: block; border: none; padding: 6px 0; }
  .compare-table td::before { content: attr(data-label); font-weight: 700; font-size: 0.75rem; color: #9CA3AF; display: block; margin-bottom: 2px; min-width: 180px; width: 180px; box-sizing: border-box; }
}

.compare-pros-cons__pro { color: #10B981; margin: 0 0 4px; font-size: 0.9rem; }
.compare-pros-cons__con { color: #EC4899; margin: 0 0 4px; font-size: 0.9rem; }
.compare-section-title { font-size: 1.35rem; font-weight: 800; color: #F8F8FF; text-align: center; margin-bottom: 24px; font-family: 'Plus Jakarta Sans', sans-serif; }
.compare-score-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.compare-score-badge { background: rgba(168,85,247,0.2); color: #F8F8FF; padding: 6px 12px; border-radius: 8px; font-size: 0.8rem; }

/* ─── Homepage compare cards ─── */
.compare-cards-section { padding: 60px 20px; border-top: 1px solid rgba(168,85,247,0.12); }
.compare-cards-section__header { text-align: center; margin-bottom: 36px; }
.compare-cards-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #F8F8FF;
  margin: 0 0 8px;
}
.compare-cards-section__title-link {
  color: inherit;
  text-decoration: none;
}
.compare-cards-section__title-link:hover {
  color: #EC4899;
  text-decoration: underline;
}
.compare-cards-section__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #9CA3AF;
  margin: 0 auto;
  text-align: center;
  max-width: 560px;
  line-height: 1.5;
}
.compare-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.compare-card {
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
  background: #16162A;
}
.compare-card:hover { box-shadow: 0 0 28px rgba(168,85,247,0.18); border-color: #A855F7; }
.compare-card__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  color: #F8F8FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.compare-card__vs {
  background: rgba(168,85,247,0.3);
  color: #F8F8FF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
}
.compare-card__winner { font-size: 0.8rem; color: #10B981; font-weight: 600; }
.compare-card__cta { font-size: 0.8rem; color: #EC4899; font-weight: 600; margin-top: auto; }
@media (max-width: 640px) {
  .compare-cards-grid { grid-template-columns: 1fr; }
}

.fp-howwetest {
  padding: 80px 0;
  border-top: 1px solid rgba(168,85,247,0.12);
  background: transparent;
}
@media (max-width: 767px) { .fp-howwetest { padding: 56px 0; } }
.hwt-header { text-align: center; margin-bottom: 36px; }
.hwt-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: clamp(22px, 3.5vw, 34px);
  color: #F8F8FF; margin-bottom: 8px;
}
.hwt-h2-sub { font-family: 'Inter', sans-serif; font-size: 15px; color: #9CA3AF; margin: 0; }
.hwt-card {
  position: relative;
  background: #0D0D1A;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hwt-card:hover { transform: translateY(-3px); }
.hwt-card--pink {
  border: 1px solid rgba(236,72,153,0.35);
  box-shadow: 0 0 0 1px rgba(236,72,153,0.1), 0 0 18px rgba(236,72,153,0.15), inset 0 0 24px rgba(236,72,153,0.04);
}
.hwt-card--pink:hover {
  box-shadow: 0 0 0 1px rgba(236,72,153,0.5), 0 0 32px rgba(236,72,153,0.28), inset 0 0 32px rgba(236,72,153,0.07);
}
.hwt-card--purple {
  border: 1px solid rgba(168,85,247,0.35);
  box-shadow: 0 0 0 1px rgba(168,85,247,0.1), 0 0 18px rgba(168,85,247,0.15), inset 0 0 24px rgba(168,85,247,0.04);
}
.hwt-card--purple:hover {
  box-shadow: 0 0 0 1px rgba(168,85,247,0.5), 0 0 32px rgba(168,85,247,0.28), inset 0 0 32px rgba(168,85,247,0.07);
}
.hwt-card--cyan {
  border: 1px solid rgba(34,211,238,0.3);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.08), 0 0 18px rgba(34,211,238,0.12), inset 0 0 24px rgba(34,211,238,0.03);
}
.hwt-card--cyan:hover {
  box-shadow: 0 0 0 1px rgba(34,211,238,0.45), 0 0 32px rgba(34,211,238,0.22), inset 0 0 32px rgba(34,211,238,0.06);
}
.hwt-card::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  pointer-events: none; opacity: 0.25; filter: blur(24px);
  transition: opacity 0.3s ease;
}
.hwt-card:hover::before { opacity: 0.45; }
.hwt-card--pink::before   { background: #EC4899; }
.hwt-card--purple::before { background: #A855F7; }
.hwt-card--cyan::before   { background: #22D3EE; }
.hwt-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700; margin-bottom: 14px; margin-left: auto; margin-right: auto;
}
.hwt-card--pink   .hwt-check { background: rgba(236,72,153,0.15); color: #EC4899; }
.hwt-card--purple .hwt-check { background: rgba(168,85,247,0.15); color: #C084FC; }
.hwt-card--cyan   .hwt-check { background: rgba(34,211,238,0.12); color: #22D3EE; }
.hwt-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 16px; color: #F8F8FF;
  margin-bottom: 8px; line-height: 1.3;
}
.hwt-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #9CA3AF; line-height: 1.6; margin: 0;
}

/* ===== Category Page (description: same layout for all terms) ===== */
.cat-description-section {
  padding: 40px 0 0;
  border-top: none;
}
.cat-desc-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.cat-desc-content p {
  margin-bottom: 14px;
}
.cat-desc-content p:last-child {
  margin-bottom: 0;
}
.cat-desc-content strong {
  color: #F8F8FF;
  font-weight: 600;
}
.cat-desc-content a {
  color: #EC4899;
  text-decoration: none;
  transition: color 0.2s;
}
.cat-desc-content a:hover {
  color: #F472B6;
}

.cat-hero {
  position: relative; overflow: hidden;
  padding: 120px 0 72px; text-align: center; background: transparent;
}
@media (max-width: 767px) { .cat-hero { padding: 100px 0 48px; } }
.cat-hero__inner { position: relative; z-index: 2; }
.cat-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.cat-blob--pink   { width:600px; height:400px; top:-80px; left:-150px; background:rgba(236,72,153,0.06); filter:blur(90px); }
.cat-blob--purple { width:350px; height:350px; top:0; right:-80px; background:rgba(168,85,247,0.06); filter:blur(80px); }
.cat-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: clamp(28px, 5vw, 58px); line-height: 1.15; color: #F8F8FF; margin-bottom: 16px;
}
.cat-hero__sub {
  font-family: 'Inter', sans-serif; font-size: 17px; color: #9CA3AF;
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.cat-section {
  padding: 72px 0; border-top: 1px solid rgba(168,85,247,0.12); background: transparent;
}
@media (max-width: 767px) { .cat-section { padding: 48px 0; } }
.cat-section__header { text-align: center; margin-bottom: 40px; }
.cat-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: clamp(22px, 3.5vw, 34px); color: #F8F8FF; margin-bottom: 8px;
}
.cat-answer-box {
  display: flex; gap: 16px; align-items: flex-start;
  background: #0D0D1A; border: 1px solid rgba(168,85,247,0.3);
  border-radius: 16px; padding: 28px;
  box-shadow: 0 0 24px rgba(168,85,247,0.1), inset 0 0 20px rgba(168,85,247,0.03);
  max-width: 800px; margin: 0 auto;
}
.cat-answer-box__icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: rgba(168,85,247,0.15); color: #A855F7;
  display: flex; align-items: center; justify-content: center;
}
.cat-answer-box__label {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 600; color: #A855F7;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px;
}
.cat-answer-box__text { font-family: 'Inter', sans-serif; font-size: 15px; color: #9CA3AF; line-height: 1.7; }
.cat-answer-box__text p { margin: 0; }
.cat-rankings { display: flex; flex-direction: column; gap: 16px; }
.cat-rank-card {
  position: relative; background: #0D0D1A;
  border: 1px solid rgba(168,85,247,0.2); border-radius: 16px;
  padding: 28px 24px 24px; margin-top: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.cat-rank-card:hover { border-color: #A855F7; box-shadow: 0 0 28px rgba(168,85,247,0.15); transform: translateY(-2px); }
.cat-rank-card--featured { border-color: rgba(236,72,153,0.4); box-shadow: 0 0 20px rgba(236,72,153,0.12); }
.cat-rank-card--featured:hover { border-color: #EC4899; box-shadow: 0 0 32px rgba(236,72,153,0.25); }
.cat-rank-card__badge {
  position: absolute; top: -13px; left: 20px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 14px; border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700; color: white; white-space: nowrap;
}
.cat-rank-card__badge--pink   { background: linear-gradient(135deg, #EC4899, #A855F7); }
.cat-rank-card__badge--purple { background: linear-gradient(135deg, #A855F7, #6366F1); }
.cat-rank-card__badge--cyan   { background: linear-gradient(135deg, #22D3EE, #A855F7); }
.cat-rank-card__inner { display: flex; align-items: flex-start; gap: 20px; }
@media (max-width: 767px) { .cat-rank-card__inner { flex-wrap: wrap; } }
.cat-rank-card__logo-col { flex-shrink: 0; }
.cat-rank-card__logo { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; }
.cat-rank-card__logo-placeholder {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: white; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center;
}
.cat-rank-card__info { flex: 1; min-width: 0; }
.cat-rank-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 20px; color: #F8F8FF; text-decoration: none;
  display: block; margin-bottom: 6px; transition: color 0.2s;
}
.cat-rank-card__name:hover { color: #EC4899; text-decoration: none; }
.cat-rank-card__stars { display: flex; align-items: center; gap: 2px; margin-bottom: 8px; }
.cat-rank-card__score { font-size: 12px; font-weight: 700; color: #F59E0B; margin-left: 5px; }
.cat-rank-card__summary { font-size: 14px; color: #9CA3AF; line-height: 1.6; margin-bottom: 12px; }
.cat-rank-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.cat-rank-card__price {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  background: #1C1C32; border: 1px solid rgba(168,85,247,0.2);
  font-size: 12px; color: #F8F8FF; font-weight: 500;
}
.cat-rank-card__type {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2);
  font-size: 12px; color: #C084FC;
}
.cat-rank-card__bestfor {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  font-size: 12px; color: #10B981;
}
.cat-rank-card__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.cat-rank-card__features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #9CA3AF; }
.cat-rank-card__cta-col { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
@media (max-width: 767px) { .cat-rank-card__cta-col { width: 100%; flex-direction: row; justify-content: flex-start; padding-top: 4px; } }
.cat-rank-card__cta { padding: 11px 22px; font-size: 14px; white-space: nowrap; text-decoration: none; }
.cat-rank-card__review-link { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 600; color: #9CA3AF; text-decoration: none; white-space: nowrap; transition: color 0.2s; }
.cat-rank-card__review-link:hover { color: #EC4899; }
.cat-faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid rgba(168,85,247,0.15); border-radius: 12px; overflow: hidden; }
.faq-button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 20px; background: #0D0D1A; border: none; cursor: pointer; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600; color: #F8F8FF;
  transition: background 0.2s;
}
.faq-button:hover { background: #16162A; }
.faq-chevron { flex-shrink: 0; color: #6B7280; transition: transform 0.3s ease; }
.faq-answer { display: none; padding: 0 20px 20px; background: #0D0D1A; }
.faq-answer p { font-family: 'Inter', sans-serif; font-size: 14px; color: #9CA3AF; line-height: 1.7; margin: 0; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.header-scrolled {
  background: #0D0D1A;
  box-shadow: 0 1px 0 rgba(168,85,247,0.15);
}
.site-nav {
  max-width: 1152px; margin: 0 auto;
  padding: 0 24px;
}
.site-nav__inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.site-nav__logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.site-nav__logo-img {
  width: 32px; height: 32px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.site-nav__logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hidden-mobile  { display: block; }
.visible-mobile { display: none; }
@media (max-width: 575px) {
  .hidden-mobile  { display: none; }
  .visible-mobile { display: block; }
}
.site-nav__menu { display: none; }
@media (min-width: 768px) { .site-nav__menu { display: flex; align-items: center; } }
.site-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav__list li a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  color: #9CA3AF; text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.site-nav__list li a:hover,
.site-nav__list li.current-menu-item a {
  color: #F8F8FF; background: rgba(255,255,255,0.05);
}
.site-nav__hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: transparent; border: none; cursor: pointer;
  color: #9CA3AF; transition: color 0.2s, background 0.2s;
}
.site-nav__hamburger:hover { color: #F8F8FF; background: rgba(255,255,255,0.05); }
@media (min-width: 768px) { .site-nav__hamburger { display: none; } }
.mobile-menu { display: none; background: #16162A; border-bottom: 1px solid rgba(168,85,247,0.15); padding: 12px 24px; }
.mobile-menu.is-open { display: block; }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__list li a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  color: #9CA3AF; text-decoration: none; transition: color 0.2s, background 0.2s;
}
.mobile-menu__list li a:hover { color: #F8F8FF; background: rgba(255,255,255,0.05); }

/* ===== front-page ===== */
.fp-hero { position: relative; overflow: hidden; padding: 120px 0 80px; text-align: center; background: transparent; }
@media (max-width: 767px) { .fp-hero { padding: 100px 0 56px; } }
.fp-hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.fp-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.fp-blob--pink   { width:700px; height:500px; top:-100px; left:-200px; background:rgba(236,72,153,0.06); filter:blur(100px); }
.fp-blob--purple { width:400px; height:400px; top:0; right:-100px; background:rgba(168,85,247,0.06); filter:blur(90px); }
.fp-hero__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: clamp(32px, 5.5vw, 64px); line-height: 1.1; color: #F8F8FF; margin-bottom: 20px; }
.fp-hero__sub { font-family: 'Inter', sans-serif; font-size: 18px; color: #9CA3AF; line-height: 1.7; max-width: 640px; margin: 0 auto 36px; }
@media (max-width: 767px) { .fp-hero__sub { font-size: 15px; } }
.fp-hero__ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.fp-btn-lg { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 16px; text-decoration: none; }
@media (max-width: 480px) { .fp-hero__ctas { flex-direction: column; width: 100%; } .fp-btn-lg { width: 100%; justify-content: center; } }
.fp-stats { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.fp-stat { display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 13px; color: #9CA3AF; }
.fp-stat__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.home-comparison-top5 { padding: 0; background: transparent; }

#content.site-content { padding-top: 0; }
body.admin-bar #content.site-content { padding-top: 0; }

/* ===== Breadcrumb ===== */
.breadcrumb-wrap { padding-top: 80px; padding-bottom: 8px; max-width: 1152px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.breadcrumb-list { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; }
.breadcrumb-item { display: flex; align-items: center; gap: 6px; }
/* Disable Bootstrap's ::before divider (slash) so we only show our SVG separator */
.breadcrumb-wrap .breadcrumb-item::before,
.breadcrumb-wrap .breadcrumb-item::after { display: none !important; content: none !important; }
.breadcrumb-item--sep { gap: 0; }
.breadcrumb-sep { color: #6B7280; flex-shrink: 0; }
.breadcrumb-link { display: flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; font-size: 13px; color: #6B7280; text-decoration: none; transition: color 0.2s; }
.breadcrumb-link:hover { color: #EC4899; text-decoration: none; }
.breadcrumb-current { font-family: 'Inter', sans-serif; font-size: 13px; color: #9CA3AF; }

/* ===== Review Page ===== */
.review-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #0d0d1a 0%, #13131f 100%);
  border-bottom: 1px solid #1e1e3a;
}
.review-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.review-hero__content { flex: 1; }
.review-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}
.review-badge--type { font-size: 13px; }
.review-badge--custom { color: #fff; border: none; }
.review-badge--date {
  color: #6B7280;
  background: #1a1a2e;
  border-color: #2a2a4a;
}
.review-hero__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #F8F8FF;
  line-height: 1.2;
  margin: 0 0 20px;
}
.review-hero__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.review-stars { display: flex; gap: 2px; }
.review-hero .star--full,
.review-related__rating .star--full { color: #FBBF24; font-size: 20px; }
.review-hero .star--half { color: #FBBF24; font-size: 20px; opacity: 0.6; }
.review-hero .star--empty { color: #374151; font-size: 20px; }
.review-score {
  font-size: 18px;
  font-weight: 700;
  color: #F8F8FF;
}
.review-best-for {
  font-size: 13px;
  color: #9CA3AF;
}
.review-best-for strong { color: #F8F8FF; }
.review-hero__price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.review-price-tag {
  font-size: 13px;
  color: #9CA3AF;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  padding: 4px 12px;
  border-radius: 6px;
}
.review-price-tag--free { color: #10B981; border-color: #10B98130; background: #10B98110; }
.review-price-tag strong { color: #F8F8FF; }
.review-hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.review-skip-link {
  font-size: 13px;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}
.review-skip-link:hover { color: #EC4899; }
.review-hero__logo {
  flex-shrink: 0;
}
.review-hero__logo-wrap {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 100px;
}
.review-hero__logo-wrap img {
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

.review-verdict {
  padding: 50px 0;
  background: #0f0f1e;
}
.review-verdict__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.review-verdict__proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-proscons { padding: 20px; border-radius: 12px; }
.review-proscons--pros { background: #10B98110; border: 1px solid #10B98130; }
.review-proscons--cons { background: #EF444410; border: 1px solid #EF444430; }
.review-proscons__title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.review-proscons--pros .review-proscons__title { color: #10B981; }
.review-proscons--cons .review-proscons__title { color: #EF4444; }
.review-proscons ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-proscons ul li {
  font-size: 14px;
  color: #D1D5DB;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.review-proscons--pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 700;
}
.review-proscons--cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 700;
}
.review-subscores {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-subscore__label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 6px;
}
.review-subscore__bar {
  height: 6px;
  background: #1e1e3a;
  border-radius: 3px;
  overflow: hidden;
}
.review-subscore__fill {
  height: 100%;
  background: linear-gradient(90deg, #EC4899, #A855F7);
  border-radius: 3px;
  transition: width 0.6s ease;
}
.review-subscores__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #1e1e3a;
  margin-top: 4px;
  font-size: 14px;
  color: #9CA3AF;
}
.review-score-big {
  font-size: 28px;
  font-weight: 800;
  color: #F8F8FF;
}

.review-content { padding: 50px 0; }
.review-content--secondary { padding-top: 0; }
.review-content__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #D1D5DB;
}
.review-content__body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #F8F8FF;
  margin: 40px 0 16px;
}
.review-content__body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F8F8FF;
  margin: 32px 0 12px;
}
.review-content__body p { margin-bottom: 16px; }
.review-content__body strong { color: #F8F8FF; }
.review-content__body a { color: #EC4899; }
.review-content__body a:hover { color: #F472B6; }

.review-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #F8F8FF;
  margin: 0 0 32px;
  text-align: center;
}

.review-video { padding: 50px 0; background: #0f0f1e; }
.review-video__wrap {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a2e;
}
.review-video__wrap iframe,
.review-video__wrap video {
  width: 100%;
  height: 100%;
  border: none;
}

.review-pricing { padding: 50px 0; }
.review-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.review-plan {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.review-plan--featured {
  border-color: #EC4899;
  background: #EC489910;
}
.review-plan__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#EC4899,#A855F7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
.review-plan__icon {
  display: block;
  margin: 0 auto 12px;
}
.review-plan__name {
  font-size: 15px;
  font-weight: 600;
  color: #F8F8FF;
  margin-bottom: 16px;
}

.review-final { padding: 60px 0; background: #0f0f1e; }
.review-final__box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a2e, #13131f);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.review-final__score {
  font-size: 56px;
  font-weight: 900;
  color: #EC4899;
  line-height: 1;
  flex-shrink: 0;
}
.review-final__score span {
  font-size: 24px;
  color: #6B7280;
}
.review-final__title {
  font-size: 20px;
  font-weight: 700;
  color: #F8F8FF;
  margin: 0 0 12px;
}
.review-final__text {
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-disclaimer {
  font-size: 11px;
  color: #4B5563;
  margin-top: 12px;
}

.review-faq { padding: 60px 0; }
.review-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-faq__item {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  overflow: hidden;
}
.review-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #F8F8FF;
  text-align: left;
  transition: color 0.2s;
}
.review-faq__question:hover { color: #EC4899; }
.review-faq__icon {
  font-size: 20px;
  color: #EC4899;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.review-faq__question[aria-expanded="true"] .review-faq__icon {
  transform: rotate(45deg);
}
.review-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.7;
}
.review-faq__answer.is-open {
  max-height: 400px;
  padding: 0 20px 18px;
}

.review-related { padding: 60px 0; background: #0f0f1e; }
.review-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.review-related__card {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.review-related__card:hover {
  border-color: #EC4899;
  transform: translateY(-2px);
}
.review-related__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg,#EC4899,#A855F7);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
}
.review-related__card img {
  display: block;
  margin: 0 auto 12px;
  max-height: 36px;
  width: auto;
  object-fit: contain;
}
.review-related__name {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}
.review-related__name a {
  color: #F8F8FF;
  text-decoration: none;
}
.review-related__name a:hover { color: #EC4899; }
.review-related__best {
  font-size: 12px;
  color: #6B7280;
  margin: 0 0 10px;
}
.review-related__rating {
  font-size: 13px;
  color: #FBBF24;
  margin-bottom: 14px;
}

.review-hero .btn--primary,
.review-final .btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  transition: opacity 0.2s, transform 0.2s;
}
.review-hero .btn--primary:hover,
.review-final .btn--primary:hover {
  color: #fff;
  opacity: 0.95;
  transform: translateY(-1px);
}
.review-hero .btn--lg,
.review-final .btn--lg { padding: 14px 28px; font-size: 16px; }
.review-plan .btn--outline,
.review-related__card .btn--outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(236,72,153,0.5);
  color: #EC4899;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 13px;
  transition: all 0.2s;
}
.review-plan .btn--outline:hover,
.review-related__card .btn--outline:hover {
  background: rgba(236,72,153,0.1);
  border-color: #EC4899;
  color: #EC4899;
}
.review-plan .btn--sm,
.review-related__card .btn--sm { padding: 8px 16px; font-size: 13px; }

@media (max-width: 768px) {
  .review-hero__inner { flex-direction: column-reverse; }
  .review-hero__logo { align-self: center; }
  .review-verdict__inner { grid-template-columns: 1fr; }
  .review-verdict__proscons { grid-template-columns: 1fr; }
  .review-final__box { flex-direction: column; align-items: center; text-align: center; }
  .review-final__score { font-size: 40px; }
}

/* ─── About Us page (dark theme) ─── */
.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
  font-family: inherit;
  color: #F8F8FF;
}
.about-hero {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(168,85,247,0.2);
}
.about-hero__avatar {
  min-width: 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(168,85,247,0.3);
  background: linear-gradient(135deg, #EC4899, #A855F7);
}
.about-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-hero__name {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: #F8F8FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.about-hero__role {
  font-size: 0.85rem;
  color: #9CA3AF;
  margin: 0 0 12px;
  font-weight: 500;
}
.about-hero__bio {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 520px) {
  .about-hero { flex-direction: column; }
}
.about-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 32px;
}
.about-box--mission {
  background: #16162A;
  border: 1px solid rgba(168,85,247,0.25);
  box-shadow: 0 0 20px rgba(168,85,247,0.08);
}
.about-box--disclosure {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.25);
}
.about-box__icon {
  font-size: 1.8rem;
  min-width: 36px;
  line-height: 1;
}
.about-box__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #F8F8FF;
  margin: 0 0 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.about-box__text {
  font-size: 0.92rem;
  color: #9CA3AF;
  line-height: 1.7;
  margin: 0 0 10px;
}
.about-box__contact {
  font-size: 0.88rem;
  color: #9CA3AF;
  margin: 0;
}
.about-box__contact a {
  color: #EC4899;
  text-decoration: none;
  font-weight: 600;
}
.about-box__contact a:hover {
  text-decoration: underline;
}
.about-section { margin-bottom: 40px; }
.about-section__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #F8F8FF;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.about-section__intro {
  color: #9CA3AF;
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.about-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(168,85,247,0.12);
}
.about-step:last-child { border-bottom: none; }
.about-step__num {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(168,85,247,0.2);
  color: #F8F8FF;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #F8F8FF;
  margin: 0 0 6px;
}
.about-step__text {
  font-size: 0.88rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}
.about-updated {
  text-align: center;
  font-size: 0.78rem;
  color: #9CA3AF;
  margin-top: 40px;
}

/* ─── Archive pages: Reviews & Compare (dark theme) ─── */
.archive-header {
  text-align: center;
  padding: 48px 20px 32px;
  max-width: 700px;
  margin: 0 auto;
}
.archive-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #F8F8FF;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.archive-header p {
  color: #9CA3AF;
  font-size: 0.95rem;
  line-height: 1.6;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(168,85,247,0.3);
  background: #16162A;
  color: #F8F8FF;
  transition: all 0.15s;
  user-select: none;
}
.filter-pill:hover { border-color: #A855F7; color: #F8F8FF; }
.filter-pill--active {
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: #fff;
  border-color: transparent;
}
.filter-pill--nsfw {
  background: rgba(220,38,38,0.2);
  color: #fca5a5;
  border-color: rgba(220,38,38,0.5);
}
.filter-pill--nsfw.filter-pill--active {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}
.filter-pill--sfw {
  background: rgba(5,150,105,0.2);
  color: #6ee7b7;
  border-color: rgba(5,150,105,0.5);
}
.filter-pill--sfw.filter-pill--active {
  background: #059669;
  color: #fff;
  border-color: #059669;
}
.filter-pill--free {
  background: rgba(245,158,11,0.15);
  color: #fcd34d;
  border-color: rgba(245,158,11,0.4);
}
.filter-pill--free.filter-pill--active {
  background: #ca8a04;
  color: #fff;
  border-color: #ca8a04;
}

.reviews-count {
  text-align: center;
  font-size: 0.82rem;
  color: #9CA3AF;
  margin-bottom: 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: #16162A;
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.review-card:hover {
  box-shadow: 0 0 28px rgba(168,85,247,0.18);
  border-color: #A855F7;
}
.review-card--hidden { display: none; }

.review-card__header {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.review-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.review-card__badge--pink { background: rgba(236,72,153,0.25); color: #EC4899; }
.review-card__badge--purple { background: rgba(168,85,247,0.25); color: #A855F7; }
.review-card__badge--cyan { background: rgba(34,211,238,0.25); color: #22D3EE; }
.review-card__type-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.review-card__type-pill--nsfw {
  background: rgba(220,38,38,0.2);
  color: #fca5a5;
}
.review-card__type-pill--sfw {
  background: rgba(5,150,105,0.2);
  color: #6ee7b7;
}
.review-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #F8F8FF;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.review-card__best-for {
  font-size: 0.85rem;
  color: #9CA3AF;
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}
.review-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(168,85,247,0.12);
  padding-top: 10px;
}
.review-card__rating { color: #F59E0B; font-weight: 700; }
.review-card__price { color: #9CA3AF; }
.review-card__free { color: #10B981; font-weight: 600; }
.review-card__cta {
  display: block;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 4px;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.review-card__cta:hover { opacity: 0.95; box-shadow: 0 0 16px rgba(236,72,153,0.4); }

.compare-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .compare-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .compare-archive-grid { grid-template-columns: 1fr; }
}

.compare-archive-card {
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  background: #16162A;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.compare-archive-card:hover {
  box-shadow: 0 0 28px rgba(168,85,247,0.18);
  border-color: #A855F7;
}
.compare-card--hidden { display: none; }

.compare-archive-card__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.compare-archive-card__tool {
  font-weight: 800;
  font-size: 0.95rem;
  color: #F8F8FF;
  flex: 1;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.compare-archive-card__vs {
  background: rgba(168,85,247,0.2);
  color: #9CA3AF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.compare-archive-card__scores {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #9CA3AF;
  font-weight: 600;
}
.compare-archive-card__winner {
  font-size: 0.85rem;
  color: #10B981;
  font-weight: 700;
}
.compare-archive-card__cta {
  font-size: 0.82rem;
  color: #EC4899;
  font-weight: 600;
  margin-top: auto;
}

.show-more-btn {
  display: block;
  margin: 32px auto 0;
  padding: 12px 32px;
  background: #16162A;
  border: 2px solid rgba(168,85,247,0.4);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #F8F8FF;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.show-more-btn:hover {
  border-color: #A855F7;
  box-shadow: 0 0 20px rgba(168,85,247,0.2);
}

/* ─── Homepage FAQ section (dark theme, scoped to avoid taxonomy conflict) ─── */
.faq-section {
  padding: 60px 20px;
  background: transparent;
  border-top: 1px solid rgba(168,85,247,0.12);
}
.faq-section__inner { max-width: 760px; margin: 0 auto; }
.faq-section__header { text-align: center; margin-bottom: 40px; }
.faq-section__title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #F8F8FF;
  margin: 0 0 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-section__sub {
  color: #9CA3AF;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.faq-section .faq-list { display: flex; flex-direction: column; gap: 0; }
/* Override taxonomy .faq-item so homepage FAQ is a clean list, not cards */
.faq-section .faq-item {
  border: none;
  border-bottom: 1px solid rgba(168,85,247,0.15);
  border-radius: 0;
  overflow: visible;
  background: #16162A;
  margin-bottom: 0;
}
.faq-section .faq-item:first-child { border-top: 1px solid rgba(168,85,247,0.15); }
.faq-section .faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: #F8F8FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.15s, background 0.15s;
}
.faq-section .faq-item__question:hover { color: #EC4899; background: rgba(168,85,247,0.05); }
.faq-section .faq-item__icon {
  flex-shrink: 0;
  color: #9CA3AF;
  transition: transform 0.25s ease, color 0.2s;
}
.faq-section .faq-item--open .faq-item__icon {
  transform: rotate(180deg);
  color: #EC4899;
}
.faq-section .faq-item--open .faq-item__question {
  color: #EC4899;
  background: rgba(168,85,247,0.06);
}
.faq-section .faq-item__answer {
  padding: 0 20px 20px;
  background: transparent;
}
.faq-section .faq-item__answer p {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.75;
  margin: 0;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 640px) {
  .faq-section { padding: 48px 16px; }
  .faq-section .faq-item__question { font-size: 0.88rem; padding: 16px 20px; }
  .faq-section .faq-item__answer { padding: 0 20px 16px; }
}

/* ─── Site footer ─── */
.site-footer {
  background: #0D0D1A;
  color: #9CA3AF;
  font-size: 0.88rem;
  border-top: 1px solid rgba(168,85,247,0.12);
  margin-top: 80px;
}
.site-footer__top { padding: 56px 20px 40px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.site-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.site-footer__logo-img {
  border-radius: 8px;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.site-footer__logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-footer__tagline {
  color: #6B7280;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.site-footer__email {
  color: #9CA3AF;
  font-size: 0.82rem;
  font-family: monospace;
  margin: 0 0 14px;
  user-select: all;
}
.site-footer__disclaimer {
  color: #4B5563;
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0;
}
.site-footer__nav-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E5E7EB;
  margin: 0 0 14px;
}
.site-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__nav-list li a {
  color: #6B7280;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
  line-height: 1.4;
}
.site-footer__nav-list li a:hover { color: #E5E7EB; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 20px;
}
.site-footer__bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer__copy {
  color: #4B5563;
  font-size: 0.78rem;
  margin: 0;
}
.site-footer__legal {
  color: #374151;
  font-size: 0.75rem;
  margin: 0;
  text-align: right;
}
@media (max-width: 560px) {
  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__legal { text-align: center; }
}
