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

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

:root {
  --white:       #FFFFFF;
  --bg:          #F9FAFB;
  --ink:         #111827;
  --ink-2:       #374151;
  --ink-3:       #6B7280;
  --ink-4:       #9CA3AF;
  --border:      #E5E7EB;
  --border-2:    #D1D5DB;
  --green:       #16A34A;
  --green-dark:  #15803D;
  --green-pale:  #F0FDF4;
  --green-mid:   #DCFCE7;
  --red:         #DC2626;
  --red-pale:    #FEF2F2;
  --amber:       #D97706;
  --amber-pale:  #FFFBEB;
  --blue:        #2563EB;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 15px rgba(0,0,0,0.06), 0 4px 6px rgba(0,0,0,0.04);
  --radius:      8px;
  --radius-lg:   12px;
  --outfit:      'Outfit', sans-serif;
  --inter:       'Inter', sans-serif;
  --max:         1100px;
  --prose:       720px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--inter);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ─── HEADER ─── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--outfit);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo span { color: var(--green); }

.nav { display: flex; list-style: none; gap: 2px; align-items: center; }

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-3);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.nav a:hover { color: var(--ink); background: var(--bg); text-decoration: none; }
.nav a.active { color: var(--green); font-weight: 600; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--ink-4);
}

.breadcrumb-inner a { color: var(--ink-3); font-weight: 500; }
.breadcrumb-inner a:hover { color: var(--green); text-decoration: none; }
.breadcrumb-inner span.sep { color: var(--border-2); }
.breadcrumb-inner span.current { color: var(--ink-2); }

/* ─── HOME HERO ─── */
.home-hero {
  background: var(--ink);
  padding: 72px 24px 80px;
}

.home-hero-inner { max-width: var(--max); margin: 0 auto; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6EE7B7;
  margin-bottom: 20px;
}

.home-hero h1 {
  font-family: var(--outfit);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 640px;
  margin-bottom: 18px;
}

.home-hero h1 em { font-style: normal; color: #6EE7B7; }

.home-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.profession-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profession-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.15s;
}

.profession-tag:hover {
  background: rgba(110,231,183,0.12);
  border-color: rgba(110,231,183,0.3);
  color: #6EE7B7;
  text-decoration: none;
}

/* ─── CATEGORY NAV ─── */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cat-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.cat-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-3);
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.12s;
  display: block;
}

.cat-nav a:hover, .cat-nav a.active {
  color: var(--green);
  border-bottom-color: var(--green);
  text-decoration: none;
}

/* ─── HOME LAYOUT ─── */
.home-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
}

/* Feed */
.feed-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 24px;
}

.post-list { display: flex; flex-direction: column; }

.post-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.post-item:first-child { padding-top: 0; }
.post-item:last-child { border-bottom: none; }

.post-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

.post-item h2 {
  font-family: var(--outfit);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
}

.post-item.featured h2 { font-size: 1.45rem; }

.post-item h2 a { color: var(--ink); }
.post-item h2 a:hover { color: var(--green); text-decoration: none; }

.post-excerpt {
  font-size: 0.925rem;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 14px;
}

.post-footer { display: flex; align-items: center; gap: 16px; }
.post-link { font-size: 0.825rem; font-weight: 600; color: var(--green); }
.post-meta { font-size: 0.775rem; color: var(--ink-4); }

/* Sidebar */
.sidebar { border-left: 1px solid var(--border); padding-left: 40px; }

.sb-section { margin-bottom: 36px; }

.sb-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sb-prof-list { list-style: none; }

.sb-prof-list li { border-bottom: 1px solid var(--border); }
.sb-prof-list li:last-child { border-bottom: none; }

.sb-prof-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  font-size: 0.875rem;
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.12s;
}

.sb-prof-list a:hover { color: var(--green); text-decoration: none; }
.sb-prof-list a .arrow { color: var(--ink-4); font-size: 0.8rem; }

.top-tool-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.top-tool {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tool-rank {
  font-family: var(--outfit);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--border-2);
  min-width: 20px;
  padding-top: 1px;
}

.tool-info { flex: 1; }
.tool-name-s { font-size: 0.875rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
.tool-desc-s { font-size: 0.775rem; color: var(--ink-4); display: block; margin-bottom: 5px; }

.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}

.badge-green { background: var(--green-mid); color: var(--green-dark); }
.badge-amber { background: var(--amber-pale); color: var(--amber); }

.sb-about-text {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ─── ARTICLE HEADER ─── */
.article-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px 40px;
}

.article-header-inner {
  max-width: var(--prose);
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.meta-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  padding: 3px 9px;
  border-radius: 4px;
}

.meta-date { font-size: 0.8rem; color: var(--ink-4); }
.meta-updated { font-size: 0.8rem; color: var(--green); font-weight: 600; }
.meta-read { font-size: 0.8rem; color: var(--ink-4); }

.article-header h1 {
  font-family: var(--outfit);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.article-lead {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.75;
  border-left: 3px solid var(--green);
  padding-left: 18px;
  margin: 0;
}

/* ─── ARTICLE BODY ─── */
.article-body {
  max-width: var(--prose);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.article-body h2 {
  font-family: var(--outfit);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin: 52px 0 16px;
  scroll-margin-top: 80px;
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-family: var(--outfit);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 10px;
}

.article-body p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 18px;
}

.article-body ul, .article-body ol {
  margin: 0 0 18px 22px;
}

.article-body li {
  font-size: 0.975rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 6px;
}

.article-body strong { color: var(--ink); font-weight: 600; }

/* ─── DISCLOSURE ─── */
.disclosure {
  background: var(--amber-pale);
  border: 1px solid #FDE68A;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: #92400E;
  margin-bottom: 32px;
  line-height: 1.55;
}

.disclosure a { color: #92400E; text-decoration: underline; }

/* ─── VERDICT BOX ─── */
.verdict-box {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 0 0 36px;
}

.verdict-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.verdict-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.verdict-item:last-child { border-bottom: none; padding-bottom: 0; }
.verdict-item:first-child { padding-top: 0; }

.v-icon { font-size: 1.1rem; flex-shrink: 0; padding-top: 2px; }

.v-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.4;
}

.v-body span {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* ─── NEEDS BOX ─── */
.needs-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-bottom: 32px;
}

.needs-box h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 14px;
  margin-top: 0;
}

.needs-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.needs-list li {
  font-size: 0.9rem;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 0;
}

.needs-list li::before {
  content: "→";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── TABLE ─── */
.table-wrap {
  overflow-x: auto;
  margin: 0 0 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }

thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2);
  vertical-align: middle;
  line-height: 1.4;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr.winner td {
  background: var(--green-pale);
}

tbody tr.winner td:first-child {
  border-left: 3px solid var(--green);
}

.price-main { font-weight: 700; color: var(--ink); display: block; font-size: 0.9rem; }
.price-note { font-size: 0.72rem; color: var(--ink-4); }
.yes { color: var(--green); font-weight: 700; }
.no { color: var(--red); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--inter);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  line-height: 1;
}

.btn-green {
  background: var(--green);
  color: var(--white) !important;
  box-shadow: 0 1px 3px rgba(22,163,74,0.3);
}

.btn-green:hover { background: var(--green-dark); box-shadow: 0 2px 6px rgba(22,163,74,0.35); }

.btn-outline {
  background: var(--white);
  color: var(--ink-2) !important;
  border: 1.5px solid var(--border-2);
}

.btn-outline:hover { border-color: var(--ink-3); background: var(--bg); }

.btn-lg { padding: 14px 28px; font-size: 0.95rem; border-radius: 10px; }
.btn-white { background: var(--white); color: var(--green) !important; }
.btn-white:hover { background: var(--green-pale); }

/* ─── INLINE CTA BANNER ─── */
.cta-inline {
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-inline-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.cta-inline-text span { font-size: 0.825rem; color: var(--ink-3); }

/* ─── TOOL CARD ─── */
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 28px 0;
  overflow: hidden;
}

.tool-card-header {
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--bg);
}

.tool-card-name {
  font-family: var(--outfit);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.tool-stars { color: #D97706; letter-spacing: 1px; font-size: 0.95rem; }
.tool-rating-n { font-size: 0.825rem; font-weight: 600; color: var(--ink-3); margin-left: 5px; }

.tool-card-body { padding: 22px 26px; }

.tool-desc-p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.pros-cons-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 0;
}

.pros-col h4 { color: var(--green); }
.cons-col h4 { color: var(--red); }

.pros-cons-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 0; }

.pros-cons-col li {
  font-size: 0.85rem;
  color: var(--ink-3);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
  margin: 0;
}

.pros-col li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-col li::before { content: "✗"; color: var(--red); font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.tool-card-footer {
  padding: 18px 26px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tool-price-label { font-size: 0.825rem; color: var(--ink-4); }
.tool-price-label strong { color: var(--ink-2); font-weight: 600; }

/* ─── FAQ ─── */
.faq-block { margin: 36px 0; }

.faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.45;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 44px 0 0;
  text-align: center;
}

.final-cta h3 {
  font-family: var(--outfit);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.final-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-note {
  display: block;
  margin-top: 12px;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.3);
}

.final-cta-note a { color: rgba(255,255,255,0.45); text-decoration: underline; }

/* ─── STATIC PAGES ─── */
.static-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.static-page h1 {
  font-family: var(--outfit);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}

.static-page .lead {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.72;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.static-page h2 {
  font-family: var(--outfit);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

.static-page p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.78;
  margin-bottom: 14px;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0 32px;
}

.method-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.method-num {
  font-family: var(--outfit);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--border-2);
  margin-bottom: 8px;
}

.method-title { font-size: 0.875rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.method-desc { font-size: 0.8rem; color: var(--ink-4); line-height: 1.55; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  padding: 56px 24px 32px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--outfit);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-logo span { color: #6EE7B7; }

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.12s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(255,255,255,0.3); margin-left: 16px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .home-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pros-cons { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .cta-inline { flex-direction: column; align-items: flex-start; }
  .tool-card-footer { flex-direction: column; align-items: flex-start; }
  .nav { display: none; }
  .final-cta { padding: 28px 20px; }
}
