/* ============================================
   ZEIV — Main Stylesheet
   Brand: #7029a1 purple + white
   Fonts: Inter (body) + system display
   ============================================ */

:root {
  --purple: #7029a1;
  --purple-dark: #5a1f85;
  --purple-light: #9240c8;
  --purple-xlight: #f3edf9;
  --purple-glow: rgba(112,41,161,0.15);

  --bg: #ffffff;
  --bg-soft: #faf8fc;
  --bg-dark: #0d0a12;
  --bg-dark-2: #160d22;

  --text: #0d0a12;
  --text-muted: #6b6478;
  --text-light: #ffffff;
  --text-light-muted: rgba(255,255,255,0.6);

  --border: rgba(112,41,161,0.12);
  --border-dark: rgba(255,255,255,0.1);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1140px;
  --r: 12px;
  --r-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.65rem 1.4rem; border-radius: 8px;
  font-family: var(--font); font-size: 0.9rem; font-weight: 500;
  border: none; cursor: pointer; transition: all 0.18s ease;
  white-space: nowrap; line-height: 1;
}
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 4px 16px var(--purple-glow); }
.btn-outline { background: transparent; color: var(--purple); border: 1.5px solid var(--purple); }
.btn-outline:hover { background: var(--purple-xlight); }
.btn-white { background: #fff; color: var(--purple); }
.btn-white:hover { background: #f0e8f8; transform: translateY(-1px); }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; border-radius: var(--r); }

/* ---- Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; height: 64px; gap: 2rem;
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text { font-size: 1.3rem; font-weight: 700; color: var(--purple); letter-spacing: -0.02em; }

/* Dropdown nav */
.nav-main { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0.5rem 0.75rem; border-radius: 6px;
  font-size: 0.88rem; color: var(--text-muted); font-weight: 450;
  cursor: pointer; transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--purple); background: var(--purple-xlight); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(112,41,161,0.12);
  padding: 0.5rem; z-index: 200;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 0.5rem 0.75rem; border-radius: 6px;
  font-size: 0.85rem; color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--purple-xlight); color: var(--purple); }
.nav-dropdown-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); padding: 0.5rem 0.75rem 0.25rem; }

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 0.75rem; }
.nav-cta a:first-child { font-size: 0.88rem; color: var(--text-muted); }
.nav-cta a:first-child:hover { color: var(--purple); }

/* ---- Hero (homepage) ---- */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 60%, #1a0b2e 100%);
  padding: 6rem 0 5rem; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(112,41,161,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(112,41,161,0.2); border: 1px solid rgba(112,41,161,0.4);
  padding: 0.3rem 0.9rem; border-radius: 100px;
  font-size: 0.8rem; color: #c99ee8; margin-bottom: 1.75rem; font-weight: 500;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.03em; color: #fff;
  max-width: 720px; margin: 0 auto 1.25rem;
}
.hero h1 span { color: var(--purple-light); }
.hero-sub {
  font-size: 1.1rem; color: var(--text-light-muted); max-width: 500px;
  margin: 0 auto 2.25rem; line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.hero-screenshot {
  margin: 4rem auto 0; max-width: 900px;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(112,41,161,0.2);
}
.hero-screenshot img { width: 100%; display: block; }

/* ---- Section shared ---- */
.section { padding: 5rem 0; }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.6rem; }
.section-heading { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.025em; color: var(--text); }
.section-heading.light { color: #fff; }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.65; margin-top: 0.75rem; max-width: 520px; }
.section-sub.light { color: var(--text-light-muted); }

/* ---- Problem / Before-After ---- */
.before-after { background: var(--bg-soft); }
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.ba-card { border-radius: var(--r-lg); padding: 2rem; }
.ba-card.before { background: #fff; border: 1px solid var(--border); }
.ba-card.after { background: var(--purple); color: #fff; }
.ba-card-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; opacity: 0.6; margin-bottom: 1.25rem; }
.ba-card.after .ba-card-label { opacity: 0.75; }
.ba-item { display: flex; gap: 10px; margin-bottom: 0.85rem; font-size: 0.9rem; }
.ba-item-icon { font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.ba-card.before .ba-item { color: var(--text-muted); }
.ba-card.after .ba-item { color: rgba(255,255,255,0.9); }

/* ---- Why section ---- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.why-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; }
.why-card-icon { width: 40px; height: 40px; background: var(--purple-xlight); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.1rem; }
.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ---- Features grid ---- */
.features-dark { background: var(--bg-dark); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.feature-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
  border-radius: var(--r); padding: 1.5rem; transition: background 0.2s, border-color 0.2s;
}
.feature-card:hover { background: rgba(112,41,161,0.1); border-color: rgba(112,41,161,0.3); }
.feature-card-icon { font-size: 1.25rem; margin-bottom: 0.9rem; }
.feature-card h3 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.82rem; color: var(--text-light-muted); line-height: 1.55; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: var(--r-lg); padding: 3.5rem; text-align: center; margin: 0 auto;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; font-size: 1rem; }

/* ---- Blog section index ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(112,41,161,0.1); }
.blog-card a { display: block; }
.blog-card-img { height: 180px; background: var(--purple-xlight); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 0.5rem; }
.blog-card-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 1rem; }

/* ---- Blog post ---- */
.post-hero { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 4rem 0 3rem; }
.post-hero-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.75rem; }
.post-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; max-width: 760px; margin-bottom: 1rem; }
.post-hero-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 660px; line-height: 1.65; margin-bottom: 1.5rem; }
.post-meta { display: flex; align-items: center; gap: 1.25rem; font-size: 0.83rem; color: var(--text-muted); }
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.post-hero-img { margin-top: 2.5rem; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.post-hero-img img { width: 100%; max-height: 420px; object-fit: cover; }

.post-layout { display: grid; grid-template-columns: 1fr 260px; gap: 3.5rem; align-items: start; padding: 3.5rem 0 5rem; }
.post-body { min-width: 0; }
.post-body h2 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; margin: 2.5rem 0 0.75rem; color: var(--text); }
.post-body h3 { font-size: 1.1rem; font-weight: 600; margin: 2rem 0 0.5rem; color: var(--text); }
.post-body h4 { font-size: 0.95rem; font-weight: 600; margin: 1.5rem 0 0.4rem; color: var(--text); }
.post-body p { margin-bottom: 1.25rem; font-size: 0.975rem; color: #2d2635; line-height: 1.8; }
.post-body ul, .post-body ol { margin: 0 0 1.25rem 1.25rem; }
.post-body li { margin-bottom: 0.4rem; font-size: 0.975rem; color: #2d2635; line-height: 1.7; }
.post-body a { color: var(--purple); text-decoration: underline; }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.post-body img { border-radius: var(--r); margin: 1.5rem 0; border: 1px solid var(--border); }
.post-body strong { font-weight: 600; color: var(--text); }

/* Sidebar */
.post-sidebar { position: sticky; top: 80px; }
.sidebar-cta { background: var(--purple); border-radius: var(--r-lg); padding: 1.5rem; color: #fff; margin-bottom: 1.25rem; }
.sidebar-cta h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.sidebar-cta p { font-size: 0.82rem; opacity: 0.8; margin-bottom: 1.25rem; line-height: 1.5; }
.sidebar-toc { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; }
.sidebar-toc h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.sidebar-toc a { display: block; font-size: 0.83rem; color: var(--text-muted); padding: 0.3rem 0; border-left: 2px solid transparent; padding-left: 0.75rem; transition: color 0.15s, border-color 0.15s; }
.sidebar-toc a:hover { color: var(--purple); border-color: var(--purple); }

/* ---- Software comparison page ---- */
.sw-hero { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 4rem 0; }
.sw-hero-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; }
.sw-logo { width: 80px; height: 80px; border-radius: var(--r); border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.sw-logo img { width: 60px; height: 60px; object-fit: contain; }
.sw-hero-text h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.4rem; }
.sw-hero-text p { font-size: 0.95rem; color: var(--text-muted); max-width: 560px; line-height: 1.6; }
.sw-rating { text-align: right; flex-shrink: 0; }
.sw-rating-score { font-size: 2rem; font-weight: 700; color: var(--purple); line-height: 1; }
.sw-rating-stars { color: #f59e0b; font-size: 0.9rem; margin: 2px 0; }
.sw-rating-count { font-size: 0.78rem; color: var(--text-muted); }

.sw-zeiv-banner { background: var(--purple); border-radius: var(--r-lg); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin: 2.5rem 0; flex-wrap: wrap; }
.sw-zeiv-banner p { color: rgba(255,255,255,0.9); font-size: 0.95rem; max-width: 600px; line-height: 1.55; }

.sw-body { padding: 3.5rem 0 5rem; }
.sw-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start; }
.sw-content h2 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin: 2.5rem 0 0.75rem; color: var(--text); padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.sw-content h2:first-child { margin-top: 0; }
.sw-content p { font-size: 0.95rem; color: #2d2635; line-height: 1.75; margin-bottom: 1rem; }
.sw-content ul { margin: 0 0 1.25rem 1.25rem; }
.sw-content li { font-size: 0.95rem; color: #2d2635; line-height: 1.7; margin-bottom: 0.4rem; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; }
.pros-card, .cons-card { border-radius: var(--r); padding: 1.25rem; }
.pros-card { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons-card { background: #fff1f2; border: 1px solid #fecdd3; }
.pros-card h4 { color: #166534; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.cons-card h4 { color: #9f1239; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.pros-card li { color: #15803d; font-size: 0.875rem; line-height: 1.6; margin-bottom: 0.4rem; }
.cons-card li { color: #be123c; font-size: 0.875rem; line-height: 1.6; margin-bottom: 0.4rem; }
.pros-card ul, .cons-card ul { margin-left: 1rem; }

.review-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem; margin-bottom: 0.75rem; }
.review-stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 0.5rem; }
.review-text { font-size: 0.875rem; color: var(--text); line-height: 1.6; margin-bottom: 0.5rem; font-style: italic; }
.review-author { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.alternatives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1rem; }
.alt-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 1rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; transition: border-color 0.15s, box-shadow 0.15s; }
.alt-card:hover { border-color: var(--purple); box-shadow: 0 4px 16px var(--purple-glow); }
.alt-card img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.alt-card-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.alt-card-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* Sidebar for sw pages */
.sw-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.25rem; }
.sw-sidebar-box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; }
.sw-sidebar-box h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.sw-sidebar-box a { display: block; font-size: 0.83rem; color: var(--text-muted); padding: 0.3rem 0; border-left: 2px solid transparent; padding-left: 0.75rem; transition: color 0.15s, border-color 0.15s; }
.sw-sidebar-box a:hover { color: var(--purple); border-color: var(--purple); }

/* ---- Template page ---- */
.template-hero { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 4rem 0; }
.template-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.75rem; max-width: 640px; }
.template-hero p { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.65; margin-bottom: 1.5rem; }
.template-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 3.5rem 0 5rem; align-items: start; }
.template-preview { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2.5rem; }
.template-preview img { width: 100%; display: block; }
.template-content h2 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.6rem; }
.template-content h2:first-child { margin-top: 0; }
.template-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.template-content ul { margin: 0 0 1.25rem 1.25rem; }
.template-content li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.35rem; }
.template-sidebar { position: sticky; top: 80px; }
.template-cta-box { background: var(--purple); border-radius: var(--r-lg); padding: 1.75rem; color: #fff; text-align: center; }
.template-cta-box h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.template-cta-box p { font-size: 0.85rem; opacity: 0.8; line-height: 1.5; margin-bottom: 1.25rem; }
.why-grid-sm { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.why-item { display: flex; gap: 10px; align-items: flex-start; }
.why-item-icon { width: 28px; height: 28px; background: var(--purple-xlight); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
.why-item-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
.why-item-title { font-weight: 600; color: var(--text); font-size: 0.875rem; display: block; margin-bottom: 2px; }

/* ---- Section listing pages ---- */
.list-hero { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 4rem 0 3rem; }
.list-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.5rem; }
.list-hero p { font-size: 1rem; color: var(--text-muted); max-width: 520px; }
.list-section { padding: 3.5rem 0 5rem; }

/* Software listing cards */
.sw-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.sw-list-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; transition: transform 0.2s, box-shadow 0.2s; }
.sw-list-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--purple-glow); }
.sw-list-card a { display: flex; flex-direction: column; gap: 0.75rem; height: 100%; }
.sw-list-card-header { display: flex; align-items: center; gap: 0.75rem; }
.sw-list-card-icon { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; background: var(--bg-soft); overflow: hidden; flex-shrink: 0; }
.sw-list-card-icon img { width: 32px; height: 32px; object-fit: contain; }
.sw-list-card-name { font-size: 1rem; font-weight: 600; color: var(--text); }
.sw-list-card-rating { font-size: 0.78rem; color: var(--text-muted); }
.sw-list-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.sw-list-card-link { font-size: 0.83rem; font-weight: 500; color: var(--purple); }

/* ---- Footer ---- */
.site-footer { background: var(--bg-dark); color: var(--text-light-muted); padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; margin-top: 0.75rem; max-width: 240px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-light-muted); margin-bottom: 0.5rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; }
.footer-logo { font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout, .sw-layout, .template-layout { grid-template-columns: 1fr; }
  .post-sidebar, .sw-sidebar, .template-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sw-hero-inner { grid-template-columns: auto 1fr; }
  .sw-rating { display: none; }
  .alternatives-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .nav-main { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
