/* ============================================================
   B2B Sales Tools — styles.css
   Brand system: BRAND-SYSTEM.md
   ============================================================ */

/* --- CSS Variables --- */
:root {
  /* Brand */
  --indigo: #6366F1;
  --indigo-hover: #4F46E5;
  --indigo-light: #818CF8;
  --indigo-muted: rgba(99,102,241,0.12);
  --cyan: #22D3EE;
  --cyan-dim: #06B6D4;

  /* Neutrals */
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;

  /* Semantic */
  --text-primary: var(--slate-900);
  --text-body: var(--slate-700);
  --text-secondary: var(--slate-600);
  --text-muted: var(--slate-400);
  --bg-page: var(--white);
  --bg-card: var(--slate-50);
  --border-default: var(--slate-200);
  --border-subtle: var(--slate-100);
  --cta-primary: var(--indigo);
  --cta-hover: var(--indigo-hover);
  --score-highlight: var(--cyan);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900);
}
h1 { font-weight: 700; font-size: 32px; line-height: 1.15; letter-spacing: -1px; }
h2 { font-weight: 600; font-size: 22px; line-height: 1.25; letter-spacing: -0.5px; }
h3 { font-weight: 600; font-size: 16px; line-height: 1.3; letter-spacing: -0.3px; }
h4 { font-weight: 600; font-size: 14px; line-height: 1.3; letter-spacing: -0.2px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

a { color: var(--indigo); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--indigo-hover); }

.data-label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate-400);
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Navigation --- */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--slate-900);
  letter-spacing: -0.3px;
}
.site-nav-links {
  display: flex;
  gap: 28px;
}
.site-nav-links a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav-links a:hover,
.site-nav-links a.active {
  color: var(--indigo);
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--slate-700); margin: 4px 0; transition: 0.2s; }

/* --- Page Hero --- */
.page-hero {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 40px;
}
.page-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.page-hero p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin: 0 auto;
}

/* --- Tool Card --- */
.tool-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}
.tool-card:hover {
  border-color: var(--indigo);
}
.top-ranked-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #EEF2FF;
  color: var(--indigo);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.tool-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.tool-score {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #22D3EE, #06B6D4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  flex-shrink: 0;
}
.tool-card-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}
.tool-category {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  color: var(--slate-400);
}
.tool-verdict {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: var(--slate-700);
  line-height: 1.55;
  margin-bottom: 16px;
}
.tool-bars {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.tool-bar-item { flex: 1; }
.tool-bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.tool-bar-track {
  height: 6px;
  background: var(--slate-200);
  border-radius: 3px;
  overflow: hidden;
}
.tool-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #6366F1, #818CF8);
}
.tool-btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #FFFFFF;
  background: var(--indigo);
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}
.tool-btn:hover {
  background: var(--indigo-hover);
  color: #FFFFFF;
}
.tool-btn-outline {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--indigo);
  background: transparent;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--indigo);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.tool-btn-outline:hover {
  background: var(--indigo);
  color: #FFFFFF;
}
.tool-card-meta {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-200);
  flex-wrap: wrap;
}
.tool-tag {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  color: var(--slate-600);
  background: #EEF2FF;
  padding: 3px 10px;
  border-radius: 4px;
}

/* --- Tool Grid --- */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- VS Comparison --- */
.vs-header {
  text-align: center;
  margin-bottom: 32px;
}
.vs-header h1 {
  font-size: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.vs-word {
  color: var(--indigo);
  font-size: 22px;
  margin: 0 4px;
}
.vs-header p {
  font-size: 14px;
  color: var(--slate-600);
}
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: start;
}
.vs-tool {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 28px;
}
.vs-winner {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}
.vs-tool h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.vs-score {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--slate-600);
  margin-bottom: 16px;
}
.vs-score.winner { color: var(--cyan); }
.vs-attrs {
  list-style: none;
  padding: 0;
}
.vs-attrs li {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: var(--slate-700);
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--slate-100);
}
.vs-attrs li:last-child { border-bottom: none; }
.vs-attrs li span:last-child {
  font-weight: 600;
  color: var(--slate-900);
}
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}
.vs-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--indigo);
  background: #EEF2FF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Category Grid (homepage) --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.category-card:hover {
  border-color: var(--indigo);
  transform: translateY(-2px);
}
.category-card h3 {
  margin-bottom: 6px;
}
.category-card p {
  font-size: 13px;
  color: var(--slate-600);
  margin-bottom: 8px;
}
.category-card .tool-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Comparison Grid (homepage featured) --- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.comparison-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
}
.comparison-card:hover {
  border-color: var(--indigo);
}
.comparison-card .comp-tools {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--slate-900);
}
.comparison-card .comp-tools .vs-word {
  font-size: 13px;
}
.comparison-card .comp-category {
  font-size: 12px;
  color: var(--slate-400);
}

/* --- Newsletter CTA --- */
.newsletter-cta {
  background: var(--slate-900);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.newsletter-cta h2 {
  color: var(--white);
  margin-bottom: 8px;
}
.newsletter-cta p {
  color: var(--slate-400);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto 20px;
}
.newsletter-cta .tool-btn {
  background: var(--cyan);
  color: var(--slate-900);
  font-weight: 700;
}
.newsletter-cta .tool-btn:hover {
  background: var(--cyan-dim);
}

/* --- Newsletter Hub Cards --- */
.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.newsletter-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}
.newsletter-card:hover {
  border-color: var(--indigo);
}
.newsletter-card h3 { margin-bottom: 4px; }
.newsletter-card .newsletter-audience {
  font-size: 12px;
  color: var(--indigo);
  font-weight: 500;
  margin-bottom: 10px;
}
.newsletter-card p {
  font-size: 13px;
  color: var(--slate-600);
  margin-bottom: 14px;
}

/* --- Tool Profile Page --- */
.tool-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.tool-profile-score {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #22D3EE, #06B6D4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  flex-shrink: 0;
}
.tool-profile-info h1 { margin-bottom: 4px; }
.tool-profile-info .tool-category {
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}
.tool-profile-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

/* Sections on tool profile */
.profile-section {
  margin-bottom: 40px;
}
.profile-section h2 {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--slate-200);
}

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-list, .cons-list {
  list-style: none;
  padding: 0;
}
.pros-list li, .cons-list li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--slate-100);
}
.pros-list li::before { content: "✓ "; color: #10B981; font-weight: 600; }
.cons-list li::before { content: "✗ "; color: #EF4444; font-weight: 600; }

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 20px;
}
.feature-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--slate-700);
  break-inside: avoid;
}
.feature-list li::before {
  content: "→ ";
  color: var(--indigo);
  font-weight: 600;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing-table th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--slate-600);
  text-align: left;
  padding: 10px 14px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}
.pricing-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-700);
}
.pricing-table tr:last-child td { border-bottom: none; }

/* Related tools */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.related-card:hover {
  border-color: var(--indigo);
}
.related-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 4px;
}
.related-card p {
  font-size: 12px;
  color: var(--slate-400);
  margin: 0;
}

/* --- Alternatives Page --- */
.alt-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.alt-rank {
  width: 36px;
  height: 36px;
  background: var(--slate-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--slate-600);
  flex-shrink: 0;
}
.alt-rank.top {
  background: linear-gradient(135deg, #22D3EE, #06B6D4);
  color: #FFFFFF;
}

/* --- ICP Guide --- */
.guide-section {
  margin-bottom: 48px;
}
.guide-section h2 {
  margin-bottom: 8px;
}
.guide-section > p {
  color: var(--slate-600);
  font-size: 14px;
  margin-bottom: 20px;
}

/* --- Verdict Box --- */
.verdict-box {
  background: #EEF2FF;
  border-left: 3px solid var(--indigo);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.verdict-box h3 {
  color: var(--indigo);
  margin-bottom: 6px;
  font-size: 14px;
}
.verdict-box p {
  font-size: 14px;
  color: var(--slate-700);
  margin: 0;
}

/* --- Section Header --- */
.section-header {
  margin-bottom: 24px;
}
.section-header h2 {
  margin-bottom: 6px;
}
.section-header p {
  font-size: 14px;
  color: var(--slate-600);
}

/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 12px;
  color: var(--slate-400);
  margin-bottom: 8px;
}
.breadcrumb a {
  color: var(--slate-400);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--indigo);
}
.breadcrumb span { margin: 0 6px; }

/* --- Footer --- */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 48px 32px;
  margin-top: 80px;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 13px;
}
.site-footer a:hover { color: var(--white); }
.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white) !important;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--slate-400);
  margin-bottom: 16px;
  line-height: 1.5;
}
.footer-col h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--slate-300);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: var(--slate-400);
  text-align: center;
}

/* --- Responsive --- */
@media (max-width: 860px) {
  .tool-grid,
  .related-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; gap: 0; }
  .vs-divider { padding: 16px 0; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .newsletter-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .feature-list { columns: 1; }
  .site-footer-inner { grid-template-columns: 1fr 1fr; }
  .tool-profile-header { flex-direction: column; }
}

@media (max-width: 600px) {
  h1 { font-size: 24px; }
  h2 { font-size: 18px; }
  .container { padding: 0 16px; }
  .site-nav-inner { padding: 0 16px; }
  .site-nav-links { display: none; }
  .site-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 16px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-toggle { display: block; }
  .category-grid { grid-template-columns: 1fr; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .page-hero { padding: 24px 0; margin-bottom: 24px; }
  .newsletter-cta { padding: 24px; }
  .tool-profile-actions { flex-direction: column; }
}


/* =============================================================================
   NEW CONTENT SECTIONS (Content & SEO Overhaul)
   ============================================================================= */

/* Definition Block (AEO) */
.definition-block {
  background: var(--slate-50);
  border-left: 4px solid var(--indigo);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.definition-block h2 {
  font-size: var(--text-lg);
  margin-bottom: 12px;
  color: var(--slate-900);
}
.definition-block p {
  color: var(--slate-700);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* FAQ Accordion */
.faq-section {
  margin-top: 40px;
}
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--indigo);
}
.faq-question {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--slate-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--indigo);
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
  content: "−";
}
.faq-answer {
  padding: 0 20px 16px;
  color: var(--slate-600);
  line-height: 1.7;
}

/* Overview Section */
.overview-section p {
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Expanded Pros & Cons */
.expanded-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.expanded-pros-list, .expanded-cons-list {
  list-style: none;
  padding: 0;
}
.expanded-pros-list li, .expanded-cons-list li {
  margin-bottom: 16px;
}
.pro-title, .con-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  display: block;
  margin-bottom: 4px;
}
.pro-title::before {
  content: "✓ ";
  color: #22c55e;
}
.con-title::before {
  content: "✗ ";
  color: #ef4444;
}
.pro-detail, .con-detail {
  color: var(--slate-600);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* Use Cases */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.use-case-card {
  background: var(--slate-50);
  border-radius: 8px;
  padding: 20px 24px;
  border: 1px solid var(--slate-200);
}
.use-case-card h3 {
  font-size: var(--text-base);
  margin-bottom: 8px;
  color: var(--slate-900);
}
.use-case-card p {
  color: var(--slate-600);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* Pricing Detail (prose) */
.pricing-detail {
  color: var(--slate-700);
  line-height: 1.8;
}
.pricing-detail p {
  margin-bottom: 16px;
}

/* Expanded Verdict */
.verdict-expanded {
  background: var(--slate-50);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.verdict-expanded h2 {
  font-size: var(--text-lg);
  margin-bottom: 16px;
}
.verdict-expanded p {
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Stage Guidance (Comparisons) */
.stage-guidance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.stage-card {
  background: var(--slate-50);
  border-radius: 8px;
  padding: 20px 24px;
  border: 1px solid var(--slate-200);
}
.stage-card h3 {
  font-size: var(--text-base);
  color: var(--indigo);
  margin-bottom: 8px;
}
.stage-card p {
  color: var(--slate-600);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* Questions to Ask */
.questions-list {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 32px;
}
.questions-list li {
  color: var(--slate-700);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 8px;
}

/* Meta Attribution */
.page-meta {
  font-size: var(--text-xs);
  color: var(--slate-400);
  margin-top: 8px;
}

/* Migration Tips */
.migration-section {
  background: var(--slate-50);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.migration-section h2 {
  font-size: var(--text-lg);
  margin-bottom: 12px;
}
.migration-section p {
  color: var(--slate-700);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Per-Alternative Reasoning */
.alt-reasoning {
  color: var(--slate-600);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-top: 8px;
}

/* Guide Workflow / Budget / Timeline */
.guide-prose {
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 32px;
}
.guide-prose p {
  margin-bottom: 16px;
}

/* Dimension Analysis (Comparisons) */
.dimension-analysis {
  margin-bottom: 32px;
}
.dimension-item {
  margin-bottom: 20px;
}
.dimension-item h3 {
  font-size: var(--text-base);
  margin-bottom: 6px;
}
.dimension-item p {
  color: var(--slate-600);
  line-height: 1.7;
}

/* --- Editorial Attribution --- */
.editorial-attribution {
  margin-top: 32px;
  padding: 16px 20px;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.attribution-line {
  font-size: var(--text-sm);
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
}

/* --- AEO Answer Block --- */
.aeo-answer-block {
  background: var(--indigo-muted);
  border-left: 4px solid var(--indigo);
  padding: 20px 24px;
  border-radius: 6px;
  margin: 24px 0;
}
.aeo-answer-block h2 {
  font-size: var(--text-lg);
  margin-bottom: 8px;
}
.aeo-answer-block p {
  color: var(--slate-700);
  line-height: 1.7;
  margin-bottom: 6px;
}
.aeo-answer-block p:last-child { margin-bottom: 0; }

/* --- Alt Reasoning --- */
.alt-reasoning {
  font-size: var(--text-sm);
  color: var(--slate-600);
  padding: 8px 16px;
  margin: -8px 0 16px 0;
  border-left: 3px solid var(--indigo-muted);
  line-height: 1.6;
}

/* Responsive overrides for new sections */
@media (max-width: 600px) {
  .expanded-pros-cons { grid-template-columns: 1fr; }
  .stage-guidance { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
}
