/* ============================================================
   BestAITools — Main Stylesheet v2.0
   Exact match to: homepage, category page, tool listing designs
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #f0f6ff;
  --bg2:     #e4efff;
  --white:   #ffffff;
  --blue:    #0061ff;
  --blue2:   #3380ff;
  --sky:     #e8f2ff;
  --pink:    #ec4899;
  --teal:    #0891b2;
  --green:   #059669;
  --amber:   #d97706;
  --orange:  #ea580c;
  --violet:  #7c3aed;
  --indigo:  #4f46e5;
  --ink:     #0c1220;
  --ink2:    #1e2d45;
  --muted:   #5a6b85;
  --muted2:  #8fa0b8;
  --border:  #d0dff5;
  --border2: #c0d4f0;
  --star:    #f59e0b;
  --red:     #dc2626;
}

html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--bg); color: var(--ink); min-height: 100vh; font-size: 16px; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── NAVIGATION ──────────────────────────────── */
.bat-nav {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 66px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,97,255,.06);
}
.bat-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.bat-logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem; font-weight: 900;
  overflow: hidden;
}
.bat-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.bat-nav-links { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.bat-nav-links a {
  color: var(--muted); font-size: .84rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 8px; transition: .18s;
}
.bat-nav-links a:hover,
.bat-nav-links .current-menu-item a { color: var(--ink); background: var(--bg); }
.bat-nav-right { display: flex; align-items: center; gap: 10px; }
.bat-social-links { display: flex; align-items: center; gap: 4px; }
.bat-social-link {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px; color: var(--muted2);
  transition: .18s;
}
.bat-social-link:hover { color: var(--ink); background: var(--bg); }
.bat-nav-cta {
  background: var(--blue); color: #fff;
  padding: .48rem 1.3rem; border-radius: 9px;
  font-size: .83rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,97,255,.25);
  transition: .18s; white-space: nowrap;
}
.bat-nav-cta:hover { background: var(--blue2); color: #fff; }
.bat-hamburger {
  display: none;
  flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.bat-hamburger span {
  width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; display: block; transition: .2s;
}

/* ── HERO ────────────────────────────────────── */
.bat-hero {
  background: linear-gradient(150deg, #0050d8 0%, #0061ff 40%, #3b8bff 70%, #7bb8ff 100%);
  padding: 5.5rem 4rem 6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bat-hero::before {
  content: ''; position: absolute;
  top: -140px; right: -140px;
  width: 520px; height: 520px;
  background: rgba(255,255,255,.07); border-radius: 50%;
}
.bat-hero::after {
  content: ''; position: absolute;
  bottom: -100px; left: -80px;
  width: 380px; height: 380px;
  background: rgba(255,255,255,.05); border-radius: 50%;
}
.bat-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.bat-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px; padding: .32rem 1rem;
  font-size: .71rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.bat-live { width: 6px; height: 6px; background: #4fffb0; border-radius: 50%; animation: bat-pulse 2s infinite; }
@keyframes bat-pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.bat-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800; line-height: 1.07;
  letter-spacing: -1.5px; margin-bottom: 1.2rem; color: #fff;
}
.bat-hero-sub {
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(255,255,255,.82);
  max-width: 580px; margin: 0 auto 2.5rem;
}
.bat-hero-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 3rem; }
.bat-h-cta1 {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--blue);
  padding: .9rem 2rem; border-radius: 11px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .97rem; font-weight: 800;
  box-shadow: 0 8px 28px rgba(0,0,0,.18); transition: .2s;
}
.bat-h-cta1:hover { transform: translateY(-2px); color: var(--blue); }
.bat-h-cta2 {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.18); color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  padding: .9rem 1.8rem; border-radius: 11px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .95rem; font-weight: 700; transition: .2s;
}
.bat-h-cta2:hover { background: rgba(255,255,255,.28); color: #fff; }
.bat-hero-stats {
  display: inline-flex;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px; overflow: hidden;
}
.bat-hs {
  padding: .85rem 2rem;
  border-right: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.bat-hs:last-child { border-right: none; }
.bat-hs-v { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.55rem; font-weight: 800; color: #fff; }
.bat-hs-l { font-size: .67rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .6px; margin-top: 2px; }

/* ── SEARCH BAR ──────────────────────────────── */
.bat-search-wrap {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  padding: 1.8rem 4rem;
  box-shadow: 0 4px 20px rgba(0,97,255,.05);
}
.bat-sw-inner { max-width: 900px; margin: 0 auto; }
.bat-sw-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted2); margin-bottom: .75rem; }
.bat-sw-bar {
  display: flex;
  border: 2px solid var(--border2);
  border-radius: 14px; overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,97,255,.07);
  transition: .2s;
}
.bat-sw-bar:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,97,255,.1); }
.bat-sw-bar input {
  flex: 1; border: none; outline: none;
  padding: .95rem 1.3rem;
  font-size: .97rem; color: var(--ink); background: #fff;
}
.bat-sw-bar input::placeholder { color: var(--muted2); }
.bat-sw-bar select {
  border: none; border-left: 1.5px solid var(--border);
  outline: none; padding: 0 1rem;
  font-size: .85rem; font-weight: 600;
  color: var(--ink2); background: var(--bg);
  cursor: pointer; min-width: 160px;
}
.bat-sw-btn {
  background: var(--blue); border: none; color: #fff;
  padding: .95rem 2rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .92rem; font-weight: 800;
  cursor: pointer; white-space: nowrap; transition: .18s;
}
.bat-sw-btn:hover { background: var(--blue2); }

/* ── CATEGORY PILLS ──────────────────────────── */
.bat-cats-zone {
  background: var(--bg);
  border-bottom: 1.5px solid var(--border);
  padding: 1.2rem 4rem;
  overflow-x: auto; scrollbar-width: none;
}
.bat-cats-zone::-webkit-scrollbar { display: none; }
.bat-cats-row { display: flex; gap: 8px; white-space: nowrap; }
.bat-cc {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 10px; padding: .46rem 1.05rem;
  font-size: .79rem; font-weight: 700;
  cursor: pointer; transition: .2s;
  border: 1.5px solid transparent;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.bat-cc em { font-style: normal; font-size: .64rem; opacity: .65; margin-left: 2px; }
.bat-cc:hover { filter: brightness(.9); transform: translateY(-1px); }
.cc-blue    { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.cc-blue.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.cc-indigo  { background: #e0e7ff; color: #3730a3; border-color: #c7d2fe; }
.cc-violet  { background: #ede9fe; color: #5b21b6; border-color: #ddd6fe; }
.cc-pink    { background: #fce7f3; color: #9d174d; border-color: #fbcfe8; }
.cc-orange  { background: #ffedd5; color: #9a3412; border-color: #fed7aa; }
.cc-teal    { background: #cffafe; color: #0e7490; border-color: #a5f3fc; }
.cc-cyan    { background: #ecfeff; color: #164e63; border-color: #a5f3fc; }
.cc-green   { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.cc-amber   { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.cc-yellow  { background: #fef9c3; color: #854d0e; border-color: #fef08a; }
.cc-emerald { background: #ecfdf5; color: #064e3b; border-color: #a7f3d0; }
.cc-rose    { background: #ffe4e6; color: #9f1239; border-color: #fecdd3; }
.cc-red     { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }

/* ── HOMEPAGE PAGE GRID ──────────────────────── */
.bat-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.8rem 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr 295px;
  gap: 2.5rem;
}
.bat-main-col { min-width: 0; }

/* Section header */
.bat-sh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.15rem; }
.bat-st {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.02rem; font-weight: 800; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.bat-st-pip { width: 12px; height: 12px; border-radius: 3px; background: var(--blue); }
.bat-va {
  font-size: .77rem; font-weight: 700; color: var(--blue);
  background: var(--sky); border: 1.5px solid var(--border2);
  padding: .3rem .85rem; border-radius: 7px; transition: .18s;
}
.bat-va:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── FEATURED TOOLS (2×2 big cards) ─────────── */
.bat-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 2rem; }
.fb {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  cursor: pointer; transition: .22s;
  position: relative; overflow: hidden;
  display: block; color: inherit;
}
.fb::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.fb:nth-child(1)::before { background: linear-gradient(90deg,#0061ff,#4f46e5); }
.fb:nth-child(2)::before { background: linear-gradient(90deg,#ec4899,#ea580c); }
.fb:nth-child(3)::before { background: linear-gradient(90deg,#059669,#0891b2); }
.fb:nth-child(4)::before { background: linear-gradient(90deg,#7c3aed,#6366f1); }
.fb:hover { border-color: var(--border2); box-shadow: 0 10px 32px rgba(0,97,255,.12); transform: translateY(-2px); }
.fb-head { display: flex; align-items: center; gap: 13px; margin-bottom: .9rem; }
.fb-badge { font-size: .62rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.fb:nth-child(1) .fb-badge { color: var(--blue); }
.fb:nth-child(2) .fb-badge { color: var(--pink); }
.fb:nth-child(3) .fb-badge { color: var(--green); }
.fb:nth-child(4) .fb-badge { color: var(--violet); }
.fb-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.08rem; color: var(--ink); }
.fb-cat { font-size: .7rem; color: var(--muted2); margin-top: 1px; }
.fb-desc { font-size: .81rem; color: var(--muted); line-height: 1.62; }
.fb-foot { display: flex; gap: 6px; margin-top: .95rem; flex-wrap: wrap; }

/* ── SMALL TOOL CARD GRIDS ───────────────────── */
.bat-g6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; margin-bottom: 2rem; }
.bat-g5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-bottom: 2rem; }
.bat-g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 2rem; }
.tc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 13px; padding: 1.15rem;
  transition: .22s; display: block; color: inherit;
}
.tc:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(0,97,255,.11); transform: translateY(-2px); }
.tc-h { display: flex; align-items: center; gap: 10px; margin-bottom: .68rem; }
.tc-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .88rem; color: var(--ink); }
.tc-sub { font-size: .65rem; color: var(--muted2); margin-top: 1px; }
.tc-desc { font-size: .77rem; color: var(--muted); line-height: 1.52; }
.tc-foot { display: flex; gap: 4px; margin-top: .68rem; flex-wrap: wrap; }

/* ── BADGES ──────────────────────────────────── */
.b { display: inline-block; font-size: .61rem; font-weight: 700; padding: .14rem .48rem; border-radius: 5px; }
.b-new  { background: #cffafe; color: #0e7490; border: 1px solid #a5f3fc; }
.b-free { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.b-paid { background: #ffe4e6; color: #9f1239; border: 1px solid #fca5a5; }
.b-fm   { background: #e0e7ff; color: #3730a3; border: 1px solid #a5b4fc; }
.b-cat  { background: var(--bg); color: var(--muted2); border: 1px solid var(--border); }

/* Pricing pills (list cards) */
.tc-pill { display: inline-flex; align-items: center; gap: 4px; border-radius: 100px; padding: .22rem .7rem; font-size: .72rem; font-weight: 700; border: 1px solid transparent; }
.tp-free  { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.tp-fm    { background: #e0e7ff; color: #3730a3; border-color: #a5b4fc; }
.tp-paid  { background: #ffe4e6; color: #9f1239; border-color: #fca5a5; }
.tp-trial { background: #cffafe; color: #0e7490; border-color: #a5f3fc; }

/* ── DIVIDER ─────────────────────────────────── */
.bat-div { height: 1px; background: var(--border); margin: 2.2rem 0; }

/* ── HOMEPAGE SIDEBAR ────────────────────────── */
.bat-side { display: flex; flex-direction: column; gap: 13px; }
.bat-sc { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.bat-sc-hd {
  padding: .75rem 1.1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .83rem; font-weight: 800;
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 6px;
  color: var(--ink);
}
.bat-sc-hd.blue   { background: var(--blue); color: #fff; border-color: var(--blue); }
.bat-sc-hd.sky    { background: var(--sky); color: var(--blue); }
.bat-sc-hd.green  { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.bat-sc-hd.pink   { background: #fce7f3; color: #9d174d; border-color: #fbcfe8; }
.bat-sc-hd.amber  { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.bat-sr {
  display: flex; align-items: center; gap: 10px;
  padding: .68rem 1.1rem;
  border-bottom: 1.5px solid var(--bg);
  transition: .15s; color: inherit;
}
.bat-sr:last-child { border-bottom: none; }
.bat-sr:hover { background: var(--bg); }
.bat-sr-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .83rem; color: var(--ink); }
.bat-sr-cat { font-size: .67rem; color: var(--muted2); }
.bat-sr-x { margin-left: auto; font-size: .72rem; font-weight: 700; color: var(--muted2); }
.bat-sr-x.up { color: var(--green); }

/* Submit banner */
.bat-sub-banner {
  background: linear-gradient(135deg, #0050d8, #0061ff, #3b8bff);
  border-radius: 14px; padding: 1.8rem 1.5rem;
  text-align: center; color: #fff;
}
.bat-sub-t { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: .45rem; }
.bat-sub-s { font-size: .81rem; color: rgba(255,255,255,.75); margin-bottom: 1.1rem; }
.bat-sub-btn {
  display: inline-block;
  background: #fff; color: var(--blue);
  padding: .6rem 1.4rem; border-radius: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .86rem; font-weight: 800;
  cursor: pointer; transition: .18s;
}
.bat-sub-btn:hover { background: var(--sky); }

/* ── REVIEWS SECTION ─────────────────────────── */
.bat-reviews-wrap {
  background: var(--white);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 3.5rem 4rem;
}
.bat-reviews-inner { max-width: 1280px; margin: 0 auto; }
.bat-rev-hd { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--ink); text-align: center; margin-bottom: .5rem; }
.bat-rev-sub { text-align: center; color: var(--muted); font-size: .92rem; margin-bottom: 2.5rem; }
.bat-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bat-rc { background: var(--bg); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.6rem; transition: .2s; }
.bat-rc:hover { border-color: var(--border2); box-shadow: 0 6px 24px rgba(0,97,255,.08); }
.bat-rc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.bat-rc-logo {
  width: 46px; height: 46px; border-radius: 11px;
  overflow: hidden; background: var(--white);
  border: 1.5px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.bat-rc-logo img { width: 36px; height: 36px; object-fit: contain; }
.bat-rc-tool { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .97rem; color: var(--ink); }
.bat-rc-cat { font-size: .7rem; color: var(--muted2); }
.bat-rc-stars { color: var(--star); font-size: 1rem; margin-bottom: .85rem; letter-spacing: 1px; }
.bat-rc-text { font-size: .83rem; color: var(--muted); line-height: 1.66; font-style: italic; }
.bat-rc-author { display: flex; align-items: center; gap: 8px; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.bat-rc-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; color: #fff; flex-shrink: 0; font-family: 'Bricolage Grotesque', sans-serif; }
.bat-rc-name { font-weight: 700; font-size: .8rem; color: var(--ink2); }
.bat-rc-date { font-size: .7rem; color: var(--muted2); }

/* ══════════════════════════════════════════════
   CATEGORY / ARCHIVE PAGE
══════════════════════════════════════════════ */

/* Breadcrumb */
.bat-breadcrumb-bar { background: var(--white); border-bottom: 1.5px solid var(--border); padding: .75rem 4rem; }
.bat-bc-row { display: flex; align-items: center; gap: 8px; font-size: .8rem; max-width: 1280px; margin: 0 auto; color: var(--muted2); }
.bat-bc-row a { color: var(--blue); font-weight: 600; }
.bat-bc-row a:hover { text-decoration: underline; }
.bat-bc-sep { color: var(--muted2); }
.bat-bc-cur { color: var(--muted); font-weight: 600; }

/* Category hero */
.bat-cat-hero {
  background: linear-gradient(150deg, #0050d8 0%, #0061ff 40%, #3b8bff 75%, #7bb8ff 100%);
  padding: 3rem 4rem 3.5rem; color: #fff;
  position: relative; overflow: hidden;
}
.bat-cat-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: rgba(255,255,255,.07); border-radius: 50%; }
.bat-cat-hero::after  { content: ''; position: absolute; bottom: -60px; left: 25%; width: 260px; height: 260px; background: rgba(255,255,255,.05); border-radius: 50%; }
.bat-ch-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.bat-ch-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); border-radius: 100px; padding: .28rem .9rem; font-size: .72rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; margin-bottom: 1rem; }
.bat-ch-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.8rem,3.5vw,2.9rem); font-weight: 800; line-height: 1.1; letter-spacing: -.5px; margin-bottom: .8rem; color: #fff; }
.bat-ch-desc { font-size: .95rem; line-height: 1.7; color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 1.4rem; }
.bat-ch-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.bat-ch-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: .28rem .8rem; font-size: .75rem; font-weight: 700; color: #fff; transition: .18s; }
.bat-ch-tag:hover { background: rgba(255,255,255,.28); color: #fff; }
.bat-ch-stats { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.bat-ch-stat-box { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.22); border-radius: 12px; padding: .85rem 1.4rem; text-align: center; min-width: 110px; }
.bat-ch-stat-n { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.bat-ch-stat-l { font-size: .67rem; color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }

/* Controls bar */
.bat-controls-bar {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  padding: 1rem 4rem;
  position: sticky; top: 66px; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,97,255,.04);
}
.bat-ctrl-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bat-ctrl-count { font-family: 'Bricolage Grotesque', sans-serif; font-size: .88rem; font-weight: 800; color: var(--ink); }
.bat-ctrl-count span { color: var(--blue); }
.bat-ctrl-sep { width: 1px; height: 20px; background: var(--border2); flex-shrink: 0; }
.bat-filter-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.bat-fp {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1.5px solid var(--border2);
  background: var(--white); border-radius: 100px;
  padding: .35rem 1rem; font-size: .78rem; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: .18s;
  font-family: inherit;
}
.bat-fp:hover { border-color: var(--blue); color: var(--blue); }
.bat-fp.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.bat-fp.free.active   { background: var(--green); border-color: var(--green); }
.bat-fp.freemium.active { background: var(--violet); border-color: var(--violet); }
.bat-fp.paid.active   { background: var(--orange); border-color: var(--orange); }
.bat-fp.trial.active  { background: var(--teal); border-color: var(--teal); }
.bat-sort-wrap { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.bat-sort-wrap select {
  border: 1.5px solid var(--border2); border-radius: 9px;
  padding: .4rem .9rem; font-family: inherit;
  font-size: .82rem; font-weight: 600;
  color: var(--ink2); background: var(--white);
  outline: none; cursor: pointer;
}
.bat-sort-wrap select:focus { border-color: var(--blue); }
.bat-view-toggle { display: flex; border: 1.5px solid var(--border2); border-radius: 8px; overflow: hidden; }
.bat-vt { width: 34px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .18s; background: var(--white); color: var(--muted2); font-size: 1rem; border: none; }
.bat-vt:hover { color: var(--ink); }
.bat-vt.active { background: var(--blue); color: #fff; }

/* Category layout */
.bat-layout { max-width: 1280px; margin: 0 auto; padding: 2rem 4rem 5rem; display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; }

/* Category sidebar */
.bat-cat-sidebar { display: flex; flex-direction: column; gap: 14px; }
.bat-sb-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.bat-sb-hd { padding: .75rem 1.1rem; font-family: 'Bricolage Grotesque', sans-serif; font-size: .84rem; font-weight: 800; color: var(--ink); border-bottom: 1.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.bat-sb-hd span { font-size: .7rem; color: var(--muted2); font-weight: 500; }
.bat-cat-list { max-height: 340px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--border2) transparent; }
.bat-cat-item { display: flex; align-items: center; justify-content: space-between; padding: .55rem 1.1rem; border-bottom: 1px solid var(--bg); font-size: .82rem; color: var(--muted); font-weight: 600; transition: .15s; }
.bat-cat-item:last-child { border-bottom: none; }
.bat-cat-item:hover { background: var(--bg); color: var(--ink); }
.bat-cat-item.active { background: var(--sky); color: var(--blue); font-weight: 700; }
.bat-cat-cnt { background: var(--bg2); border-radius: 100px; padding: .1rem .5rem; font-size: .68rem; font-weight: 700; color: var(--muted2); }
.bat-cat-item.active .bat-cat-cnt { background: rgba(0,97,255,.12); color: var(--blue); }

/* Featured sidebar */
.bat-feat-sb { background: linear-gradient(135deg,#0050d8,#0061ff,#3b8bff); border-radius: 14px; padding: 1.3rem; color: #fff; }
.bat-feat-sb-label { font-size: .63rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .65rem; }
.bat-feat-sb-tool { display: flex; align-items: center; gap: 10px; margin-bottom: .75rem; }
.bat-feat-sb-logo { width: 40px; height: 40px; border-radius: 10px; overflow: hidden; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); }
.bat-feat-sb-logo img { width: 32px; height: 32px; object-fit: contain; }
.bat-feat-sb-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1rem; color: #fff; }
.bat-feat-sb-cat { font-size: .7rem; color: rgba(255,255,255,.6); }
.bat-feat-sb-desc { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.57; margin-bottom: .9rem; }
.bat-feat-sb-btn { display: block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.28); border-radius: 8px; padding: .6rem; text-align: center; color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-size: .82rem; font-weight: 700; transition: .2s; }
.bat-feat-sb-btn:hover { background: rgba(255,255,255,.28); color: #fff; }

/* Price filter */
.bat-price-filter { padding: .9rem 1.1rem; display: flex; flex-direction: column; gap: 8px; }
.bat-pf-row { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.bat-pf-check { display: flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.bat-pf-dot { width: 14px; height: 14px; border-radius: 4px; border: 2px solid var(--border2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .55rem; font-weight: 900; color: #fff; transition: .18s; }
.bat-pf-dot.checked { border-color: var(--blue); background: var(--blue); }
.bat-pf-cnt { font-size: .7rem; font-weight: 700; color: var(--muted2); }

/* Featured tool banner (dark) */
.bat-ftb {
  background: linear-gradient(120deg,#0c1220 0%,#1e2d45 100%);
  border-radius: 16px; padding: 1.4rem 1.6rem;
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 1.5rem; transition: .2s;
  border: 1.5px solid rgba(255,255,255,.06);
  color: inherit;
}
.bat-ftb:hover { box-shadow: 0 8px 32px rgba(0,0,0,.25); transform: translateY(-1px); }
.bat-ftb-logo { width: 52px; height: 52px; border-radius: 13px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); }
.bat-ftb-logo img { width: 42px; height: 42px; object-fit: contain; }
.bat-ftb-badge { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff; font-size: .63rem; font-weight: 800; padding: .18rem .6rem; border-radius: 4px; letter-spacing: .3px; text-transform: uppercase; margin-bottom: .35rem; }
.bat-ftb-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.bat-ftb-desc { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.55; }
.bat-ftb-right { margin-left: auto; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.bat-ftb-vote { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.3rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 5px; }
.bat-ftb-vote-label { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .4px; }
.bat-ftb-btn { background: var(--blue); color: #fff; padding: .62rem 1.4rem; border-radius: 9px; font-family: 'Bricolage Grotesque', sans-serif; font-size: .84rem; font-weight: 800; transition: .18s; white-space: nowrap; display: inline-block; }
.bat-ftb-btn:hover { background: var(--blue2); color: #fff; }

/* Tool list card */
.tool-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 1.2rem 1.4rem;
  display: flex; align-items: flex-start; gap: 1.1rem;
  margin-bottom: 10px; transition: .22s; position: relative;
  color: inherit;
}
.tool-card:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(0,97,255,.1); transform: translateY(-1px); }
.tc-rank { width: 28px; flex-shrink: 0; text-align: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1rem; color: var(--muted2); padding-top: 10px; }
.tc-rank.top3 { color: var(--blue); }
.tc-logo { flex-shrink: 0; }
.tc-body { flex: 1; min-width: 0; }
.tc-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: .28rem; flex-wrap: wrap; }
.tc-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1rem; color: var(--ink); }
.tc-verified { background: #dcfce7; color: #166534; border: 1px solid #86efac; font-size: .6rem; font-weight: 800; padding: .15rem .5rem; border-radius: 4px; text-transform: uppercase; letter-spacing: .3px; }
.tc-verified.gold { background: linear-gradient(135deg,#fef3c7,#fde68a); color: #92400e; border-color: #fcd34d; }
.tc-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; margin-bottom: .65rem; }
.tc-meta { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.tc-rating { display: flex; align-items: center; gap: 4px; }
.tc-stars { color: var(--star); font-size: .78rem; letter-spacing: .5px; }
.tc-score { font-size: .78rem; font-weight: 800; color: var(--ink2); }
.tc-cat-tag { background: var(--bg); border: 1px solid var(--border2); border-radius: 100px; padding: .22rem .7rem; font-size: .72rem; font-weight: 600; color: var(--muted); transition: .15s; }
.tc-cat-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.tc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; padding-top: 2px; }
.tc-upvote { display: flex; flex-direction: column; align-items: center; gap: 2px; background: var(--bg); border: 1.5px solid var(--border2); border-radius: 9px; padding: .5rem .7rem; cursor: pointer; transition: .18s; min-width: 54px; }
.tc-upvote:hover { border-color: var(--blue); background: var(--sky); }
.tc-upvote-arrow { font-size: 1rem; line-height: 1; color: var(--muted2); }
.tc-upvote-n { font-family: 'Bricolage Grotesque', sans-serif; font-size: .88rem; font-weight: 800; color: var(--ink2); }
.tc-visit { display: inline-flex; align-items: center; gap: 5px; background: var(--blue); color: #fff; padding: .52rem 1.1rem; border-radius: 8px; font-family: 'Bricolage Grotesque', sans-serif; font-size: .8rem; font-weight: 700; transition: .18s; white-space: nowrap; }
.tc-visit:hover { background: var(--blue2); color: #fff; }
.tc-new-badge { position: absolute; top: .9rem; right: 1.4rem; background: var(--teal); color: #fff; font-size: .6rem; font-weight: 800; padding: .18rem .55rem; border-radius: 4px; letter-spacing: .3px; text-transform: uppercase; }

/* Newsletter banner */
.bat-nl-banner { background: linear-gradient(135deg,#0050d8,#0061ff,#3b8bff); border-radius: 16px; padding: 2rem 2.5rem; color: #fff; text-align: center; margin-bottom: 1.5rem; }
.bat-nl-t { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: .4rem; }
.bat-nl-s { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1.2rem; }
.bat-nl-form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto; }
.bat-nl-input { flex: 1; border: none; border-radius: 9px; padding: .75rem 1rem; font-family: inherit; font-size: .88rem; outline: none; color: var(--ink); }
.bat-nl-btn { background: var(--ink2); color: #fff; border: none; border-radius: 9px; padding: .75rem 1.3rem; font-family: 'Bricolage Grotesque', sans-serif; font-size: .86rem; font-weight: 800; cursor: pointer; transition: .18s; white-space: nowrap; }
.bat-nl-btn:hover { background: #000; }

/* Load more */
.bat-load-more-wrap { text-align: center; margin-top: 2rem; }
.bat-load-more { background: var(--white); border: 2px solid var(--border2); color: var(--ink2); padding: .85rem 2.5rem; border-radius: 11px; font-family: 'Bricolage Grotesque', sans-serif; font-size: .92rem; font-weight: 800; cursor: pointer; transition: .2s; }
.bat-load-more:hover { border-color: var(--blue); color: var(--blue); background: var(--sky); }

/* ══════════════════════════════════════════════
   TOOL LISTING PAGE
══════════════════════════════════════════════ */

/* Tool header */
.bat-tool-header { background: var(--white); border-bottom: 1.5px solid var(--border); padding: 2.2rem 4rem; }
.bat-th-inner { max-width: 1280px; margin: 0 auto; }
.bat-th-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; }
.bat-th-left { display: flex; align-items: flex-start; gap: 1.5rem; flex: 1; min-width: 0; }
.bat-tool-meta { flex: 1; min-width: 0; }
.bat-tool-name-row { display: flex; align-items: center; gap: 10px; margin-bottom: .35rem; flex-wrap: wrap; }
.bat-tool-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--ink); letter-spacing: -.5px; }
.bat-tool-verified { background: #dcfce7; color: #166534; border: 1px solid #86efac; font-size: .65rem; font-weight: 800; padding: .2rem .6rem; border-radius: 5px; letter-spacing: .3px; text-transform: uppercase; }
.bat-tool-featured-badge { background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff; font-size: .65rem; font-weight: 800; padding: .2rem .6rem; border-radius: 5px; letter-spacing: .3px; text-transform: uppercase; }
.bat-tool-tagline { font-size: 1rem; color: var(--muted); line-height: 1.6; margin-bottom: .85rem; max-width: 560px; }
.bat-tool-meta-row { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.bat-rating-stars { display: flex; align-items: center; gap: 5px; }
.bat-stars { color: var(--star); font-size: .95rem; letter-spacing: 1px; }
.bat-rating-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .95rem; color: var(--ink); }
.bat-rating-count { font-size: .78rem; color: var(--muted2); }
.bat-meta-pill { display: inline-flex; align-items: center; gap: 5px; background: var(--bg); border: 1.5px solid var(--border2); border-radius: 100px; padding: .3rem .85rem; font-size: .75rem; font-weight: 700; color: var(--muted); }
.bat-meta-pill.green { background: #dcfce7; border-color: #bbf7d0; color: #166534; }
.bat-meta-pill.blue  { background: var(--sky); border-color: var(--border2); color: var(--blue); }
.bat-th-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.bat-cta-visit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: .85rem 1.8rem; border-radius: 11px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .97rem; font-weight: 800;
  box-shadow: 0 4px 18px rgba(0,97,255,.28);
  transition: .2s; white-space: nowrap;
}
.bat-cta-visit:hover { background: var(--blue2); transform: translateY(-1px); color: #fff; }
.bat-cta-visit svg { width: 16px; height: 16px; flex-shrink: 0; }
.bat-cta-row2 { display: flex; gap: 8px; }
.bat-cta-save {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); color: var(--ink2);
  border: 1.5px solid var(--border2);
  padding: .68rem 1.3rem; border-radius: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .86rem; font-weight: 700; cursor: pointer; transition: .2s;
}
.bat-cta-save:hover { border-color: var(--blue); color: var(--blue); }
.bat-cta-share {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--border);
  padding: .68rem 1.1rem; border-radius: 10px;
  font-size: .84rem; font-weight: 600; cursor: pointer; transition: .2s; font-family: inherit;
}
.bat-cta-share:hover { color: var(--ink); border-color: var(--border2); }

/* CTA button (for post content / shortcode) */
.bat-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: .75rem 1.5rem; border-radius: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .95rem; font-weight: 800;
  box-shadow: 0 4px 14px rgba(0,97,255,.25);
  transition: .2s; margin: 1rem 0;
}
.bat-cta-btn:hover { background: var(--blue2); transform: translateY(-1px); color: #fff; }

/* Tabs bar */
.bat-tabs-bar {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  padding: 0 4rem;
  position: sticky; top: 66px; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,97,255,.04);
}
.bat-tabs-inner { max-width: 1280px; margin: 0 auto; display: flex; overflow-x: auto; scrollbar-width: none; }
.bat-tabs-inner::-webkit-scrollbar { display: none; }
.bat-tab {
  padding: .9rem 1.3rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .87rem; font-weight: 700; color: var(--muted);
  cursor: pointer; border-bottom: 3px solid transparent;
  white-space: nowrap; transition: .18s; margin-bottom: -1.5px;
  user-select: none; background: none; border-top: none; border-left: none; border-right: none;
}
.bat-tab:hover { color: var(--ink2); }
.bat-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.bat-tab-count { background: var(--blue); color: #fff; font-size: .6rem; padding: .1rem .45rem; border-radius: 4px; margin-left: 5px; font-weight: 800; vertical-align: middle; }

/* Tool page grid */
.bat-tool-page { max-width: 1280px; margin: 0 auto; padding: 2.5rem 4rem 4rem; display: grid; grid-template-columns: 1fr 310px; gap: 2.5rem; }
.bat-tool-main { min-width: 0; }

/* Article content */
.bat-section { margin-bottom: 2.5rem; }
.bat-sec-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--ink);
  margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 8px;
}
.bat-sec-title::before { content: ''; width: 4px; height: 18px; background: var(--blue); border-radius: 2px; display: block; flex-shrink: 0; }
.bat-tool-content { font-size: .9rem; color: var(--muted); line-height: 1.82; }
.bat-tool-content p { margin-bottom: .9rem; }
.bat-tool-content h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--ink); margin: 1.8rem 0 .7rem; scroll-margin-top: 140px; }
.bat-tool-content h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink2); margin: 1.4rem 0 .5rem; }
.bat-tool-content ul, .bat-tool-content ol { padding-left: 1.4rem; margin-bottom: .9rem; }
.bat-tool-content li { margin-bottom: .3rem; }
.bat-tool-content table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; font-size: .85rem; }
.bat-tool-content th { background: var(--bg2); font-weight: 700; color: var(--ink2); padding: .6rem .9rem; text-align: left; border: 1px solid var(--border); }
.bat-tool-content td { padding: .55rem .9rem; border: 1px solid var(--border); color: var(--muted); }
.bat-tool-content blockquote { border-left: 3px solid var(--blue); padding: .6rem 1rem; background: var(--sky); border-radius: 0 8px 8px 0; margin-bottom: .9rem; font-style: italic; }
.bat-tool-content img { border-radius: 10px; margin: .75rem 0; }
.bat-tool-content a { color: var(--blue); text-decoration: underline; }

/* Features grid */
.bat-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bat-feat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 13px; padding: 1.2rem; transition: .2s; }
.bat-feat-card:hover { border-color: var(--border2); box-shadow: 0 4px 18px rgba(0,97,255,.08); }
.bat-feat-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: .7rem; }
.bat-feat-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .9rem; color: var(--ink); margin-bottom: .3rem; }
.bat-feat-desc { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* Pros & Cons */
.bat-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bat-pc-col { background: var(--white); border: 1.5px solid var(--border); border-radius: 13px; padding: 1.3rem; }
.bat-pc-header { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .92rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 7px; }
.bat-pc-header.pros { color: var(--green); }
.bat-pc-header.cons { color: var(--red); }
.bat-pc-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: .7rem; font-size: .82rem; color: var(--muted); line-height: 1.55; }
.bat-pc-item:last-child { margin-bottom: 0; }
.bat-pc-dot { width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; margin-top: 1px; }
.bat-pc-dot.pro { background: #dcfce7; color: #166534; }
.bat-pc-dot.con { background: #fee2e2; color: #991b1b; }

/* Screenshots */
.bat-screenshots { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.bat-ss { border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .2s; position: relative; }
.bat-ss:hover { border-color: var(--blue); box-shadow: 0 4px 18px rgba(0,97,255,.1); }
.bat-ss img { width: 100%; height: 100%; object-fit: cover; }

/* Pricing */
.bat-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.bat-price-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.5rem; text-align: center; transition: .2s; position: relative; overflow: hidden; }
.bat-price-card.popular { border-color: var(--blue); box-shadow: 0 4px 22px rgba(0,97,255,.14); }
.bat-price-popular-tag { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: .63rem; font-weight: 800; padding: .22rem .9rem; border-radius: 0 0 8px 8px; white-space: nowrap; letter-spacing: .3px; }
.bat-price-plan { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .9rem; color: var(--muted); margin-bottom: .4rem; margin-top: .5rem; }
.bat-price-amount { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.1rem; font-weight: 800; color: var(--ink); line-height: 1; }
.bat-price-amount span { font-size: .85rem; color: var(--muted); font-weight: 500; }
.bat-price-per { font-size: .72rem; color: var(--muted2); margin: .25rem 0 1rem; }
.bat-price-features { list-style: none; text-align: left; margin-bottom: 1.2rem; }
.bat-price-features li { font-size: .79rem; color: var(--muted); padding: .32rem 0; border-bottom: 1px solid var(--bg); display: flex; align-items: flex-start; gap: 7px; line-height: 1.45; }
.bat-price-features li:last-child { border-bottom: none; }
.bat-price-features li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: .76rem; flex-shrink: 0; margin-top: 1px; }
.bat-price-btn { width: 100%; background: var(--bg2); border: 1.5px solid var(--border2); color: var(--ink2); padding: .68rem; border-radius: 9px; font-family: 'Bricolage Grotesque', sans-serif; font-size: .84rem; font-weight: 700; cursor: pointer; transition: .2s; }
.bat-price-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.bat-price-card.popular .bat-price-btn { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Review summary */
.bat-review-summary { display: flex; align-items: center; gap: 2.5rem; background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.6rem 2rem; margin-bottom: 1.5rem; }
.bat-rs-big { font-family: 'Bricolage Grotesque', sans-serif; font-size: 3.8rem; font-weight: 800; color: var(--ink); line-height: 1; }
.bat-rs-stars { font-size: 1.3rem; color: var(--star); letter-spacing: 2px; margin: .15rem 0 .25rem; }
.bat-rs-count { font-size: .78rem; color: var(--muted2); }
.bat-rs-breakdown { flex: 1; }
.bat-rs-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: .42rem; }
.bat-rs-bar-row:last-child { margin-bottom: 0; }
.bat-rs-bar-lbl { font-size: .74rem; color: var(--muted); font-weight: 700; width: 30px; text-align: right; flex-shrink: 0; }
.bat-rs-bar { flex: 1; height: 7px; background: var(--bg2); border-radius: 4px; overflow: hidden; }
.bat-rs-bar-fill { height: 100%; border-radius: 4px; }
.bat-rs-bar-pct { font-size: .72rem; color: var(--muted2); width: 30px; flex-shrink: 0; }

/* Review cards */
.bat-review-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.5rem; margin-bottom: 12px; transition: .2s; }
.bat-review-card:hover { border-color: var(--border2); box-shadow: 0 4px 14px rgba(0,97,255,.07); }
.bat-rv-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.bat-rv-user { display: flex; align-items: center; gap: 11px; }
.bat-rv-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 800; color: #fff; flex-shrink: 0; font-family: 'Bricolage Grotesque', sans-serif; }
.bat-rv-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .88rem; color: var(--ink); }
.bat-rv-role { font-size: .7rem; color: var(--muted2); margin-top: 1px; }
.bat-rv-right { text-align: right; }
.bat-rv-stars { color: var(--star); font-size: .82rem; letter-spacing: .5px; }
.bat-rv-date { font-size: .7rem; color: var(--muted2); margin-top: 2px; }
.bat-rv-headline { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .92rem; color: var(--ink); margin-bottom: .5rem; }
.bat-rv-text { font-size: .83rem; color: var(--muted); line-height: 1.68; }
.bat-rv-helpful { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--bg); }
.bat-rv-helpful-lbl { font-size: .73rem; color: var(--muted2); }
.bat-helpful-btn { background: var(--bg); border: 1px solid var(--border); border-radius: 7px; padding: .28rem .8rem; font-size: .73rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: .15s; font-family: inherit; }
.bat-helpful-btn:hover { border-color: var(--border2); color: var(--ink); }

/* Write review form */
.bat-write-review { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.8rem; margin-top: 1.5rem; }
.bat-wr-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-bottom: .5rem; }
.bat-wr-sub { font-size: .8rem; color: var(--muted2); margin-bottom: 1.1rem; }
.bat-wr-label-sm { font-size: .74rem; font-weight: 700; color: var(--ink2); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .5rem; }
.bat-wr-stars-wrap { display: flex; gap: 5px; margin-bottom: 1.2rem; }
.bat-wr-star { font-size: 1.8rem; color: #dde5f5; transition: .15s; cursor: pointer; line-height: 1; }
.bat-wr-star.lit { color: var(--star); }
.bat-wr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.bat-wr-field { display: flex; flex-direction: column; gap: 5px; }
.bat-wr-field.full { grid-column: span 2; }
.bat-wr-lbl { font-size: .73rem; font-weight: 700; color: var(--ink2); text-transform: uppercase; letter-spacing: .5px; }
.bat-wr-input { border: 1.5px solid var(--border2); border-radius: 9px; padding: .78rem 1rem; font-family: inherit; font-size: .88rem; color: var(--ink); background: #fff; outline: none; transition: .18s; }
.bat-wr-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,97,255,.08); }
.bat-wr-input::placeholder { color: var(--muted2); }
textarea.bat-wr-input { resize: vertical; min-height: 110px; line-height: 1.65; }
.bat-wr-submit { background: var(--blue); border: none; color: #fff; padding: .85rem 2.2rem; border-radius: 10px; font-family: 'Bricolage Grotesque', sans-serif; font-size: .92rem; font-weight: 800; cursor: pointer; transition: .2s; box-shadow: 0 4px 14px rgba(0,97,255,.25); }
.bat-wr-submit:hover { background: var(--blue2); transform: translateY(-1px); }

/* Tool sidebar */
.bat-tool-side { display: flex; flex-direction: column; gap: 16px; }
.bat-info-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.bat-info-hd { background: var(--blue); color: #fff; padding: .78rem 1.2rem; font-family: 'Bricolage Grotesque', sans-serif; font-size: .85rem; font-weight: 800; }
.bat-info-row { display: flex; align-items: center; justify-content: space-between; padding: .72rem 1.2rem; border-bottom: 1px solid var(--bg); font-size: .82rem; }
.bat-info-row:last-child { border-bottom: none; }
.bat-info-label { color: var(--muted); font-weight: 600; }
.bat-info-val { font-weight: 700; color: var(--ink2); text-align: right; max-width: 55%; }
.bat-info-val.green { color: var(--green); }
.bat-info-val a { color: var(--blue); }

/* Featured tool card (tool sidebar) */
.bat-ft-card { background: linear-gradient(135deg,#0050d8,#0061ff,#3b8bff); border-radius: 14px; padding: 1.4rem; color: #fff; }
.bat-ft-label { font-size: .64rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.bat-ft-tool { display: flex; align-items: center; gap: 12px; margin-bottom: .85rem; }
.bat-ft-logo { width: 44px; height: 44px; border-radius: 11px; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); }
.bat-ft-logo img { width: 36px; height: 36px; object-fit: contain; }
.bat-ft-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff; }
.bat-ft-cat { font-size: .72rem; color: rgba(255,255,255,.6); }
.bat-ft-desc { font-size: .8rem; color: rgba(255,255,255,.72); line-height: 1.6; margin-bottom: 1rem; }
.bat-ft-btn { display: block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); border-radius: 9px; padding: .68rem; text-align: center; color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-size: .84rem; font-weight: 700; cursor: pointer; transition: .2s; }
.bat-ft-btn:hover { background: rgba(255,255,255,.28); color: #fff; }

/* Alternatives */
.bat-alt-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.bat-alt-hd { background: var(--sky); color: var(--blue); padding: .78rem 1.2rem; font-family: 'Bricolage Grotesque', sans-serif; font-size: .85rem; font-weight: 800; border-bottom: 1.5px solid var(--border); }
.bat-alt-row { display: flex; align-items: center; gap: 11px; padding: .78rem 1.2rem; border-bottom: 1px solid var(--bg); transition: .2s; color: inherit; }
.bat-alt-row:last-child { border-bottom: none; }
.bat-alt-row:hover { background: var(--bg); }
.bat-alt-logo { width: 36px; height: 36px; border-radius: 9px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--bg2); border: 1px solid var(--border); }
.bat-alt-logo img { width: 28px; height: 28px; object-fit: contain; }
.bat-alt-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .84rem; color: var(--ink); }
.bat-alt-cat { font-size: .67rem; color: var(--muted2); margin-top: 1px; }
.bat-alt-right { margin-left: auto; text-align: right; flex-shrink: 0; }
.bat-alt-stars { font-size: .7rem; color: var(--star); }
.bat-alt-price { font-size: .67rem; font-weight: 700; color: var(--muted2); }

/* Tags */
.bat-tags-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.1rem; }
.bat-tags-hd { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .82rem; color: var(--ink); margin-bottom: .75rem; display: flex; align-items: center; gap: 6px; }
.bat-tags-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.bat-tag { background: var(--bg2); border: 1px solid var(--border2); border-radius: 100px; padding: .3rem .85rem; font-size: .75rem; font-weight: 700; color: var(--muted); transition: .18s; display: inline-block; }
.bat-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Similar tools */
.bat-similar-section { max-width: 1280px; margin: 0 auto 4rem; padding: 0 4rem; }
.bat-similar-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: 8px; margin-bottom: 1.1rem; }
.bat-similar-title::before { content: ''; width: 4px; height: 18px; background: var(--blue); border-radius: 2px; display: block; }
.bat-similar-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.bat-sim-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 13px; padding: 1.1rem; transition: .22s; display: block; color: inherit; }
.bat-sim-card:hover { border-color: var(--blue); box-shadow: 0 6px 22px rgba(0,97,255,.1); transform: translateY(-2px); }
.bat-sim-top { display: flex; align-items: center; gap: 9px; margin-bottom: .65rem; }
.bat-sim-logo { width: 38px; height: 38px; border-radius: 9px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--bg2); border: 1px solid var(--border); }
.bat-sim-logo img { width: 30px; height: 30px; object-fit: contain; }
.bat-sim-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: .88rem; color: var(--ink); }
.bat-sim-cat { font-size: .66rem; color: var(--muted2); margin-top: 1px; }
.bat-sim-desc { font-size: .76rem; color: var(--muted); line-height: 1.5; }
.bat-sim-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .7rem; }
.bat-sim-stars { font-size: .72rem; color: var(--star); }
.bat-sim-badge { font-size: .65rem; font-weight: 700; padding: .12rem .45rem; border-radius: 4px; }
.bat-sim-badge.free { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.bat-sim-badge.paid { background: #ffe4e6; color: #9f1239; border: 1px solid #fca5a5; }
.bat-sim-badge.fm   { background: #e0e7ff; color: #3730a3; border: 1px solid #a5b4fc; }

/* ── FOOTER ──────────────────────────────────── */
.bat-footer {
  background: var(--ink2);
  color: rgba(255,255,255,.4);
  padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem;
  flex-wrap: wrap; gap: 1rem;
}
.bat-footer-logo { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 9px; }
.bat-footer-logo-mark { width: 26px; height: 26px; border-radius: 7px; background: var(--blue); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .72rem; font-weight: 900; overflow: hidden; }
.bat-footer-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.bat-foot-links { display: flex; gap: 1.5rem; }
.bat-foot-links a { color: rgba(255,255,255,.4); transition: .18s; }
.bat-foot-links a:hover { color: rgba(255,255,255,.8); }
.bat-footer-social { display: flex; align-items: center; gap: 8px; }
.bat-footer-social a { color: rgba(255,255,255,.4); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: .18s; }
.bat-footer-social a:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

/* ── PAGINATION ──────────────────────────────── */
.bat-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; padding: 2rem 0 1rem; }
.bat-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .82rem; font-weight: 600; color: var(--ink); transition: .18s; background: var(--white); font-family: 'Bricolage Grotesque', sans-serif; }
.bat-pagination .page-numbers:hover,
.bat-pagination .page-numbers.current { background: var(--blue); border-color: var(--blue); color: #fff; }
.bat-pagination .page-numbers.dots { border: none; background: transparent; cursor: default; }

/* ── LOGO BOX HELPER ─────────────────────────── */
.bat-logo-box { display: flex; align-items: center; justify-content: center; }

/* ── INDEX / FALLBACK ────────────────────────── */
.bat-posts-grid { max-width: 1280px; margin: 0 auto; padding: 2rem 4rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bat-post-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; transition: .22s; display: block; color: inherit; }
.bat-post-card:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(0,97,255,.1); transform: translateY(-2px); }
.bat-post-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg2); }
.bat-post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bat-post-card-body { padding: 1.25rem; }
.bat-post-card-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1rem; color: var(--ink); margin-bottom: .5rem; line-height: 1.3; }
.bat-post-card-excerpt { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.bat-post-card-meta { display: flex; align-items: center; gap: 8px; margin-top: .75rem; font-size: .75rem; color: var(--muted2); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .bat-nav, .bat-tool-header, .bat-tabs-bar { padding-left: 2rem; padding-right: 2rem; }
  .bat-hero, .bat-search-wrap, .bat-cats-zone, .bat-breadcrumb-bar, .bat-controls-bar, .bat-reviews-wrap, .bat-similar-section, .bat-footer { padding-left: 2rem; padding-right: 2rem; }
  .bat-page { padding: 2rem; grid-template-columns: 1fr 260px; }
  .bat-layout { padding: 2rem; grid-template-columns: 200px 1fr; }
  .bat-tool-page { padding: 2rem; }
  .bat-cat-hero { padding: 2.5rem 2rem; }
  .bat-g6 { grid-template-columns: repeat(3,1fr); }
  .bat-similar-grid { grid-template-columns: repeat(3,1fr); }
  .bat-pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .bat-nav { padding: 0 1.5rem; height: auto; min-height: 56px; flex-wrap: wrap; gap: .5rem; }
  .bat-nav-links { display: none; }
  .bat-nav-links.open { display: flex; flex-direction: column; width: 100%; padding: .5rem 0; }
  .bat-hamburger { display: flex; }
  .bat-hero { padding: 3.5rem 1.5rem 4rem; }
  .bat-hero h1 { font-size: 2.2rem; }
  .bat-hero-btns { flex-direction: column; align-items: center; }
  .bat-hero-stats { flex-wrap: wrap; }
  .bat-hs { padding: .6rem 1.2rem; }
  .bat-search-wrap { padding: 1.2rem 1.5rem; }
  .bat-sw-bar select { display: none; }
  .bat-cats-zone { padding: .8rem 1.5rem; }
  .bat-page { grid-template-columns: 1fr; padding: 1.5rem; }
  .bat-side { display: none; }
  .bat-feat-grid { grid-template-columns: 1fr; }
  .bat-g6, .bat-g5, .bat-g4 { grid-template-columns: repeat(2,1fr); }
  .bat-rev-grid { grid-template-columns: 1fr; }
  .bat-reviews-wrap { padding: 2rem 1.5rem; }
  .bat-layout { grid-template-columns: 1fr; padding: 1.5rem; }
  .bat-cat-sidebar { display: none; }
  .bat-ch-inner { grid-template-columns: 1fr; }
  .bat-ch-stats { display: none; }
  .bat-th-row { flex-direction: column; }
  .bat-th-cta { align-items: flex-start; }
  .bat-tool-page { grid-template-columns: 1fr; padding: 1.5rem; }
  .bat-tool-side { display: none; }
  .bat-features-grid, .bat-pros-cons { grid-template-columns: 1fr; }
  .bat-pricing-grid, .bat-screenshots { grid-template-columns: 1fr; }
  .bat-similar-grid { grid-template-columns: repeat(2,1fr); }
  .bat-similar-section { padding: 0 1.5rem; }
  .bat-footer { flex-direction: column; text-align: center; padding: 1.5rem; gap: .75rem; }
  .bat-tool-header { padding: 1.5rem; }
  .bat-tabs-bar { padding: 0 1.5rem; }
  .bat-wr-grid { grid-template-columns: 1fr; }
  .bat-wr-field.full { grid-column: span 1; }
  .bat-posts-grid { grid-template-columns: 1fr; padding: 1.5rem; }
}
@media (max-width: 480px) {
  .bat-g6, .bat-g5, .bat-g4 { grid-template-columns: 1fr; }
  .bat-similar-grid { grid-template-columns: 1fr; }
  .bat-hero-stats .bat-hs { min-width: 80px; }
}
