/* ========================================================================
   smallbizemailhub — Premium Design System (variant of EmailToolAdviser)
   Per-site accent color is the ONLY var that changes between siblings.
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --accent: #059669;
  --accent-hover: #047857;
  --accent-light: #ecfdf5;
  --accent-border: #a7f3d0;

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border-light: #f1f5f9;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --bg-white: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;

  --green: #059669;
  --green-light: #ecfdf5;
  --red: #dc2626;
  --red-light: #fef2f2;
  --yellow: #d97706;
  --yellow-light: #fffbeb;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 6px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.08), 0 10px 10px rgba(0,0,0,.04);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-primary); background: var(--bg-white); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
ul, ol { padding-left: 1.25rem; }

/* HEADER ---------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 2rem; }
.logo { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--text-primary); letter-spacing: -.02em; }
.logo span { color: var(--accent); }
.header-nav { display: flex; align-items: center; gap: .25rem; }
.header-nav a { color: var(--text-secondary); font-size: .875rem; font-weight: 500; padding: .5rem .75rem; border-radius: var(--radius-sm); transition: color .15s, background .15s; }
.header-nav a:hover { color: var(--text-primary); background: var(--bg-subtle); }
.header-btn { background: var(--accent); color: white !important; padding: 9px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: .8125rem; letter-spacing: .01em; transition: background .15s; flex-shrink: 0; }
.header-btn:hover { background: var(--accent-hover) !important; }
.progress-bar { position: fixed; top: 64px; left: 0; height: 3px; background: var(--accent); width: 0%; z-index: 199; transition: width .1s; }
@media (max-width: 900px) { .header-nav { display: none; } }
@media (max-width: 480px) { .header-btn { font-size: .75rem; padding: 8px 12px; max-width: 150px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } }

/* LAYOUT ---------------------------------------------------------------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

/* BREADCRUMB ------------------------------------------------------------ */
.breadcrumb, .breadcrumbs { padding: 1rem 0; font-size: .8125rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.breadcrumb a, .breadcrumbs a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover, .breadcrumbs a:hover { color: var(--accent); }
.breadcrumb-sep, .breadcrumbs span { color: var(--border-strong); }

/* ARTICLE LAYOUT -------------------------------------------------------- */
.article-wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem 5rem; display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
@media (max-width: 1024px) { .article-wrap { grid-template-columns: 1fr; gap: 0; } .article-sidebar { display: none; } }

/* ARTICLE HEADER -------------------------------------------------------- */
.article-header { padding: 2.5rem 0 2rem; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; }
.article-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tag { display: inline-flex; align-items: center; background: var(--accent-light); color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }
.article-updated, .article-read-time { font-size: .8125rem; color: var(--text-muted); }
.article-header h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; color: var(--text-primary); letter-spacing: -.02em; margin-bottom: 1.125rem; }
.article-standfirst, .article-header .lede { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.75; max-width: 680px; margin-bottom: 1.75rem; }
.article-byline { display: flex; align-items: center; gap: .875rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.byline-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #7c3aed); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8125rem; color: white; flex-shrink: 0; letter-spacing: .02em; }
.byline-text .byline-name { font-size: .875rem; font-weight: 700; color: var(--text-primary); }
.byline-text .byline-role { font-size: .8rem; color: var(--text-muted); margin-top: 1px; }

/* ARTICLE BODY ---------------------------------------------------------- */
.article-body { min-width: 0; }
.article-body h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.625rem; font-weight: 800; color: var(--text-primary); margin: 3rem 0 1rem; line-height: 1.25; letter-spacing: -.01em; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); margin: 2rem 0 .75rem; line-height: 1.35; }
.article-body h4 { font-size: .9375rem; font-weight: 700; color: var(--text-primary); margin: 1.5rem 0 .5rem; }
.article-body p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.375rem; font-size: 1rem; }
.article-body ul, .article-body ol { color: var(--text-secondary); margin: .75rem 0 1.5rem 1.5rem; }
.article-body li { line-height: 1.75; margin-bottom: .4rem; }
.article-body strong { color: var(--text-primary); font-weight: 700; }
.article-body em { color: var(--text-secondary); }
.article-body a { color: var(--accent); font-weight: 600; border-bottom: 1px solid var(--accent-border); transition: border-color .15s; }
.article-body a:hover { border-color: var(--accent); }
.article-body blockquote { position: relative; border-left: 3px solid var(--accent); padding: 1.25rem 1.5rem; background: var(--accent-light); border-radius: 0 var(--radius) var(--radius) 0; margin: 2rem 0; }
.article-body blockquote p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin: 0; }

/* DISCLOSURE ------------------------------------------------------------ */
.disclosure, .affiliate-disclosure { background: var(--yellow-light); border-left: 3px solid var(--yellow); padding: .875rem 1.125rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .8125rem; color: #92400e; line-height: 1.6; margin-bottom: 2rem; }
.disclosure strong, .affiliate-disclosure strong { color: #78350f; font-weight: 700; }

/* HERO IMAGE ------------------------------------------------------------ */
.hero-image-wrap, .hero-image { margin: 0 0 2.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrap img, .hero-image img { width: 100%; height: auto; max-height: 520px; object-fit: cover; }
.image-caption { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: .625rem; font-style: italic; }
.article-image { margin: 2.5rem 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article-image img { width: 100%; height: auto; max-height: 400px; object-fit: cover; }

/* TABLE OF CONTENTS ----------------------------------------------------- */
.toc { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; }
.toc-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .875rem; }
.toc ol { margin-left: 1.25rem; }
.toc li { margin-bottom: .375rem; }
.toc a { font-size: .875rem; color: var(--accent); font-weight: 500; border-bottom: none; }
.toc a:hover { text-decoration: underline; }

/* STAT CALLOUT ---------------------------------------------------------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
@media (max-width: 600px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-number { font-size: 2.25rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: .5rem; letter-spacing: -.03em; font-family: 'Inter', sans-serif; }
.stat-label { font-size: .8125rem; color: var(--text-muted); line-height: 1.5; }

/* COMPARISON TABLE ------------------------------------------------------ */
.comparison-wrap { margin: 2.5rem 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.comparison-header { background: var(--bg-dark); padding: 1.125rem 1.5rem; }
.comparison-header h3 { color: white; font-size: .9375rem; font-weight: 700; margin: 0; }
.comparison-scroll { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.comparison-table th { background: var(--bg-subtle); padding: .75rem 1rem; text-align: left; font-weight: 700; color: var(--text-primary); border-bottom: 2px solid var(--border); font-size: .8125rem; }
.comparison-table td { padding: .875rem 1rem; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); vertical-align: middle; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr.winner, .comparison-table tr.winner-row { background: var(--green-light); }
.comparison-table tr.winner td, .comparison-table tr.winner-row td { color: var(--text-primary); }
.comparison-table tr:hover td { background: var(--bg-subtle); }
.win-badge { display: inline-flex; align-items: center; gap: .3rem; background: var(--green); color: white; font-size: .65rem; font-weight: 800; letter-spacing: .06em; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; vertical-align: middle; margin-left: .5rem; }
.check-yes, .comparison-table .check { color: var(--green); font-weight: 700; }
.check-no, .comparison-table .x { color: var(--red); font-weight: 700; }
.stars { color: var(--yellow); }
.comparison-table .rank-1 { font-weight: 700; color: var(--accent); }

/* SCORECARD / RATING-CARD ----------------------------------------------- */
.scorecard, .rating-card { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin: 2.5rem 0; }
.scorecard-title { font-size: .875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .05em; }
.score-row { display: flex; align-items: center; gap: 1rem; margin-bottom: .875rem; }
.score-row:last-child { margin-bottom: 0; padding-top: .875rem; border-top: 1px solid var(--border); }
.score-label { font-size: .875rem; color: var(--text-secondary); width: 180px; flex-shrink: 0; font-weight: 500; }
.score-bar-wrap { flex: 1; height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.score-bar { height: 100%; border-radius: 999px; transition: width 1s ease; }
.score-value { font-size: .875rem; font-weight: 800; color: var(--text-primary); width: 36px; text-align: right; flex-shrink: 0; }
@media (max-width: 600px) { .score-label { width: 120px; } }
.rating-card .score { font-size: 4rem; font-weight: 800; color: var(--accent); line-height: 1; }
.rating-card .score small { font-size: 1.25rem; color: var(--text-muted); font-weight: 400; }
.rating-card .breakdown { flex: 1; min-width: 250px; }
.rating-card .breakdown div { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px dashed var(--border); font-size: .95rem; }
.rating-card .breakdown div:last-child { border-bottom: 0; }

/* PROCESS STEPS --------------------------------------------------------- */
.steps-wrap { margin: 2.5rem 0; }
.steps-title { font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.25rem; }
.step-item { display: flex; gap: 1.25rem; padding: 1.25rem; background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; align-items: flex-start; }
.step-num { width: 36px; height: 36px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .875rem; color: white; flex-shrink: 0; }
.step-content .step-title { font-weight: 700; color: var(--text-primary); font-size: .9375rem; margin-bottom: .25rem; }
.step-content .step-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* PROS / CONS ----------------------------------------------------------- */
.pros-cons-grid, .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }
@media (max-width: 600px) { .pros-cons-grid, .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .pros { background: var(--green-light); border: 1px solid #a7f3d0; border-radius: var(--radius); padding: 1.25rem; }
.cons-box, .cons { background: var(--red-light); border: 1px solid #fecaca; border-radius: var(--radius); padding: 1.25rem; }
.pros-cons-title, .pros h4, .cons h4 { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .875rem; }
.pros-box .pros-cons-title, .pros h4 { color: #065f46; }
.cons-box .pros-cons-title, .cons h4 { color: #991b1b; }
.pros-cons-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; line-height: 1.6; margin-bottom: .5rem; }
.pros-box .pros-cons-item, .pros li { color: #065f46; }
.cons-box .pros-cons-item, .cons li { color: #991b1b; }
.pros-cons-icon { flex-shrink: 0; font-weight: 700; margin-top: .1rem; }
.pros ul, .cons ul { padding-left: 1.25rem; margin-bottom: 0; }

/* WINNER CARD / VERDICT ------------------------------------------------- */
.winner-card, .verdict { background: linear-gradient(135deg, var(--accent-light) 0%, #dbeafe 100%); border: 2px solid var(--accent); border-radius: var(--radius-lg); padding: 2rem; margin: 2.5rem 0; }
.verdict h2, .verdict h3 { color: var(--text-primary); margin-top: 0; }
.verdict p { color: var(--text-secondary); }
.winner-card-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .875rem; display: flex; align-items: center; gap: .5rem; }
.winner-card-label::before { content: '★'; }
.winner-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.375rem; font-weight: 800; color: var(--text-primary); margin-bottom: .875rem; line-height: 1.3; }
.winner-card-reason { font-size: .9375rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.winner-card-btn, .verdict .btn { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: white; padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; text-decoration: none; border-bottom: none; }
.winner-card-btn:hover, .verdict .btn:hover { background: var(--accent-hover); }

/* PRICING TABLE --------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { background: white; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: relative; }
.pricing-card.recommended { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 12px; border-radius: 999px; white-space: nowrap; }
.pricing-name { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: .5rem; }
.pricing-price { font-size: 2rem; font-weight: 900; color: var(--accent); letter-spacing: -.03em; line-height: 1; margin-bottom: .25rem; }
.pricing-contacts { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-features { list-style: none; padding: 0; margin: 0; }
.pricing-features li { font-size: .8125rem; color: var(--text-secondary); padding: .3rem 0; display: flex; align-items: center; gap: .5rem; list-style: none; margin: 0; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* BAR CHART ------------------------------------------------------------- */
.bar-chart { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin: 2.5rem 0; }
.bar-chart-title { font-size: .875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.25rem; }
.bar-row { margin-bottom: .875rem; }
.bar-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .35rem; }
.bar-label { font-size: .8125rem; font-weight: 600; color: var(--text-secondary); }
.bar-value { font-size: .8125rem; font-weight: 800; }
.bar-track { background: var(--border); border-radius: 999px; height: 10px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; }

/* IN-ARTICLE CTA BOX ---------------------------------------------------- */
.cta-box { background: linear-gradient(135deg, var(--accent-light), #dbeafe); border: 1.5px solid var(--accent-border); border-radius: var(--radius-lg); padding: 2rem; margin: 3rem 0; text-align: center; }
.cta-box-eyebrow { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .75rem; display: block; }
.cta-box h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 800; color: var(--text-primary); margin-bottom: .625rem; line-height: 1.3; }
.cta-box p { font-size: .9rem; color: var(--text-secondary); margin-bottom: 1.375rem; line-height: 1.65; }
.cta-box .price-justify { font-size: .9rem; color: var(--text-secondary); margin: 1rem 0; font-style: italic; }
.cta-box-btn, .cta-box .btn { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: white; padding: 13px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: .9375rem; border-bottom: none; }
.cta-box-btn:hover, .cta-box .btn:hover { background: var(--accent-hover); }
.cta-box-guarantee { display: block; font-size: .75rem; color: var(--text-muted); margin-top: .75rem; }

/* FEATURED PICK (HOMEPAGE / TOP-PICK BACK-COMPAT) ----------------------- */
.featured-pick, .top-pick, .featured-pick-box { background: linear-gradient(135deg, #f0f9ff, var(--accent-light)); border: 2px solid var(--accent); border-radius: var(--radius-xl); padding: 2.25rem; margin: 2.5rem 0; }
.featured-pick-badge, .pick-badge, .top-pick .pick-label { display: inline-flex; align-items: center; gap: .4rem; background: var(--accent); color: white; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 1.25rem; }
.featured-pick-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.pick-logo { width: 52px; height: 52px; border-radius: var(--radius); background: #1e40af; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; color: white; flex-shrink: 0; letter-spacing: -.02em; }
.pick-name, .top-pick h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; margin: 0; }
.pick-rating, .top-pick .rating { display: flex; align-items: center; gap: .5rem; margin-top: .25rem; }
.pick-stars { color: var(--yellow); font-size: .9375rem; }
.pick-score, .top-pick .rating-text { font-size: .875rem; font-weight: 700; color: var(--text-muted); }
.pick-summary { font-size: .9375rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.pick-features { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.75rem; list-style: none; padding: 0; }
@media (max-width: 560px) { .pick-features { grid-template-columns: 1fr; } }
.pick-feature { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--text-secondary); }
.pick-feature-check { color: var(--green); font-weight: 800; flex-shrink: 0; }
.pick-price-line, .top-pick .price { font-size: .9375rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.25rem; }
.pick-price-line span, .top-pick .price strong { font-size: 1.125rem; color: var(--accent); }
.pick-cta { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: white; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: .9375rem; border-bottom: none; }
.pick-cta:hover { background: var(--accent-hover); }
.pick-guarantee { font-size: .75rem; color: var(--text-muted); margin-top: .875rem; display: block; }
.top-pick .features { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.top-pick .features li { padding-left: 1.75rem; position: relative; list-style: none; }
.top-pick .features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* VS HEADER + REVIEW HEADER --------------------------------------------- */
.vs-header { display: flex; align-items: center; gap: 1.5rem; margin: 2rem 0; flex-wrap: wrap; }
.tool-chip { display: inline-flex; align-items: center; gap: .625rem; padding: .625rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: white; box-shadow: var(--shadow-sm); }
.tool-chip-icon { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .75rem; color: white; flex-shrink: 0; }
.tool-chip-name { font-weight: 700; font-size: .9rem; color: var(--text-primary); }
.vs-divider { font-size: 1.125rem; font-weight: 900; color: var(--text-light); }
.review-header { display: flex; align-items: flex-start; gap: 1.25rem; background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2rem; }
.review-tool-icon { width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.125rem; color: white; flex-shrink: 0; }
.review-tool-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; margin-bottom: .25rem; }
.review-tool-stars { color: var(--yellow); margin-bottom: .25rem; }
.review-tool-meta { font-size: .8rem; color: var(--text-muted); }

/* SIDEBAR --------------------------------------------------------------- */
.article-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.sidebar-widget-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 1rem; display: block; }
.sidebar-pick-name { font-size: 1.125rem; font-weight: 800; color: var(--text-primary); margin-bottom: .25rem; }
.sidebar-pick-stars { color: var(--yellow); font-size: .875rem; margin-bottom: .125rem; }
.sidebar-pick-score { font-size: .8rem; color: var(--text-muted); margin-bottom: .875rem; }
.sidebar-pick-features { margin-bottom: 1.25rem; list-style: none; padding: 0; }
.sidebar-pick-feature { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--text-secondary); padding: .2rem 0; }
.sidebar-pick-feature::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.sidebar-pick-price { font-size: .8125rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; }
.sidebar-pick-btn { display: block; background: var(--accent); color: white; padding: 11px 16px; border-radius: var(--radius-sm); font-weight: 700; font-size: .8125rem; text-align: center; border-bottom: none; transition: background .15s; }
.sidebar-pick-btn:hover { background: var(--accent-hover); }
.sidebar-pick-guarantee { font-size: .7rem; color: var(--text-muted); text-align: center; margin-top: .625rem; display: block; }
.sidebar-toc-title { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .875rem; }
.sidebar-toc-link { display: flex; align-items: flex-start; gap: .5rem; font-size: .8125rem; color: var(--text-secondary); padding: .4rem 0; border-bottom: 1px solid var(--border-light); text-decoration: none; font-weight: 500; transition: color .15s; }
.sidebar-toc-link:last-child { border-bottom: none; }
.sidebar-toc-link:hover { color: var(--accent); }
.sidebar-toc-num { color: var(--text-light); font-size: .75rem; flex-shrink: 0; margin-top: .1rem; }

/* FAQ ------------------------------------------------------------------- */
.faq-section, .faq { margin: 3rem 0; }
.faq-section-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1.25rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .625rem; overflow: hidden; background: white; }
.faq-q { padding: 1.0625rem 1.25rem; font-size: .9375rem; font-weight: 700; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: white; list-style: none; }
.faq-q::-webkit-details-marker, .faq-item summary::-webkit-details-marker { display: none; }
.faq-q:hover, .faq-item summary:hover { background: var(--bg-subtle); }
.faq-item summary { padding: 1.0625rem 1.25rem; font-size: .9375rem; font-weight: 700; color: var(--text-primary); cursor: pointer; list-style: none; position: relative; padding-right: 3rem; }
.faq-item summary::after { content: '+'; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-icon { color: var(--accent); font-size: 1.125rem; flex-shrink: 0; transition: transform .2s; }
.faq-a, .faq-item div.answer { padding: 0 1.25rem 1.0625rem; font-size: .9rem; color: var(--text-secondary); line-height: 1.75; display: none; }
.faq-item.open .faq-a, .faq-item[open] div.answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item div.answer { display: block; }  /* native details handles hide via [open] */

/* INDEX PAGES ----------------------------------------------------------- */
.index-header { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
.index-header h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--text-primary); margin-bottom: .625rem; line-height: 1.2; }
.index-header p { font-size: 1rem; color: var(--text-secondary); max-width: 560px; }
.index-dual-cta { display: flex; align-items: center; gap: 1rem; padding: 1.75rem; background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-lg); margin: 2rem 0; flex-wrap: wrap; }
.index-dual-cta p { font-size: .9375rem; font-weight: 600; color: var(--text-primary); flex: 1; min-width: 200px; }
.btn-primary, .btn { display: inline-flex; align-items: center; gap: .4rem; background: var(--accent); color: white; padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: .875rem; border-bottom: none; white-space: nowrap; text-decoration: none; }
.btn-primary:hover, .btn:hover { background: var(--accent-hover); color: white; }
.btn-secondary, .btn-outline { display: inline-flex; align-items: center; gap: .4rem; color: var(--accent); border: 1.5px solid var(--accent-border); padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: .875rem; white-space: nowrap; background: white; text-decoration: none; }
.btn-lg { padding: 13px 26px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.card-grid, .article-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin: 0; }
.article-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; transition: box-shadow .2s, border-color .2s; text-decoration: none; }
.article-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent-border); }
.card-tag, .article-card .cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin-bottom: .625rem; display: block; }
.card-title, .article-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); line-height: 1.35; margin-bottom: .5rem; }
.article-card h3 a { color: var(--text-primary); text-decoration: none; border-bottom: none; }
.article-card h3 a:hover { color: var(--accent); }
.card-excerpt, .article-card p { font-size: .8125rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.card-arrow, .article-card .read-more { font-size: .8125rem; font-weight: 700; color: var(--accent); text-decoration: none; }

/* HOMEPAGE HERO --------------------------------------------------------- */
.home-hero, .hero { padding: 5rem 0 4.5rem; text-align: center; background: linear-gradient(180deg, var(--bg-subtle) 0%, white 100%); border-bottom: 1px solid var(--border); }
.home-hero-eyebrow, .hero .eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent-light); border: 1px solid var(--accent-border); color: var(--accent); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px; margin-bottom: 1.25rem; }
.home-hero h1, .hero h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900; color: var(--text-primary); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1.25rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.home-hero p, .hero .lede { font-size: 1.125rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.7; }
.home-hero-ctas { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-btn-primary { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: white; padding: 15px 30px; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; border-bottom: none; text-decoration: none; }
.hero-btn-primary:hover { background: var(--accent-hover); color: white; }
.hero-btn-secondary { display: inline-flex; align-items: center; gap: .5rem; color: var(--text-secondary); font-size: .9375rem; font-weight: 600; border-bottom: none; text-decoration: none; }
.hero-social-proof { display: flex; align-items: center; justify-content: center; gap: .75rem; font-size: .8125rem; color: var(--text-muted); }
.hero-proof-stars { color: var(--yellow); }

/* WHY-TRUST / CATEGORY CARDS (BACK-COMPAT) ------------------------------ */
.why-trust { background: var(--bg-subtle); padding: 2.5rem; border-radius: var(--radius-lg); margin: 3rem 0; }
.why-trust .trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 700px) { .why-trust .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-grid div h4 { margin: 0 0 .5rem; color: var(--text-primary); }
.trust-grid div p { color: var(--text-muted); margin: 0; font-size: .9375rem; }
.category-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 3rem 0; }
@media (min-width: 700px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
.category-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-decoration: none; color: var(--text-primary); transition: border-color .15s, transform .15s, box-shadow .15s; box-shadow: var(--shadow-sm); }
.category-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--text-primary); text-decoration: none; }
.category-card h3 { margin: 0 0 .5rem; color: var(--text-primary); font-family: 'Playfair Display', Georgia, serif; }
.category-card p { color: var(--text-muted); margin: 0; }
.category-card .arrow { display: inline-block; margin-top: 1rem; color: var(--accent); font-weight: 600; }

/* FOOTER ---------------------------------------------------------------- */
footer, .site-footer { background: var(--bg-dark); color: white; padding: 0; margin-top: 4rem; }
.footer-main, .site-footer .footer-grid { max-width: 1180px; margin: 0 auto; padding: 4rem 1.5rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .footer-main, .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-main, .site-footer .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name, .site-footer h4 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #475569; margin-bottom: 1rem; }
.footer-main > div > h4:first-child, .site-footer .footer-grid > div:first-child h4 { font-size: 1rem; color: white; text-transform: none; letter-spacing: -.01em; }
.footer-brand-desc, .site-footer .brand-blurb { font-size: .8125rem; color: #64748b; line-height: 1.65; margin-bottom: 1.25rem; max-width: 360px; }
.footer-col-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #475569; margin-bottom: 1rem; }
.footer-col a, .site-footer ul a { display: block; color: #94a3b8; font-size: .8125rem; padding: .3rem 0; transition: color .15s; text-decoration: none; }
.footer-col a:hover, .site-footer ul a:hover { color: white; text-decoration: none; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .25rem; }
.footer-bottom, .site-footer .legal { max-width: 1180px; margin: 0 auto; padding: 1.5rem; border-top: 1px solid #1e293b; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .75rem; color: #475569; }
.footer-disclosure, .site-footer .legal p { font-size: .7rem; color: #475569; max-width: 560px; line-height: 1.6; margin: 0; }

/* MOBILE STICKY CTA ----------------------------------------------------- */
#msct { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-dark); padding: 12px 16px; z-index: 9999; box-shadow: 0 -4px 24px rgba(0,0,0,.3); border-top: 1px solid #1e293b; }
.msct-inner { display: flex; align-items: center; justify-content: space-between; max-width: 600px; margin: 0 auto; gap: 12px; }
.msct-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.msct-icon { width: 32px; height: 32px; background: var(--accent); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .6875rem; color: white; flex-shrink: 0; }
.msct-text-main { color: white; font-weight: 700; font-size: .8125rem; }
.msct-text-sub { color: #64748b; font-size: .6875rem; }
.msct-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.msct-btn { background: var(--accent); color: white; padding: 9px 15px; border-radius: var(--radius-sm); font-weight: 700; font-size: .8125rem; text-decoration: none; white-space: nowrap; }
.msct-close { background: transparent; border: none; color: #475569; font-size: 1.25rem; cursor: pointer; padding: 4px 6px; line-height: 1; }

/* LOGO BADGES (existing) ------------------------------------------------ */
.tool-logo-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 8px; border: 2px solid var(--border); background: #fff; margin: .5rem; text-decoration: none; }
.logo-name { font-weight: 700; font-size: 15px; color: var(--text-primary); }
.comparison-logos { display: flex; align-items: center; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.vs-text { font-size: 1.4rem; font-weight: 900; color: var(--text-light); }
.review-header-logo { display: flex; align-items: center; gap: 1.5rem; margin: 1.5rem 0; padding: 1.5rem; background: var(--bg-subtle); border-radius: 12px; border: 2px solid var(--border); }

/* UTILITIES ------------------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--border); margin: 3rem 0; border: 0; }
.badge { display: inline-block; padding: .2rem .6rem; background: var(--accent-light); color: var(--accent); font-size: .75rem; font-weight: 600; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.badge.warn { background: #fef3c7; color: #b45309; }
.badge.green { background: #d1fae5; color: var(--green); }
