/* ============================================
   newsletter-tool-check.de – Main Stylesheet
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #0ea5e9;
  --accent: #10b981;
  --accent-dark: #059669;
  --dark: #1e293b;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  padding-left: 1.5rem;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.site-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-logo:hover { color: var(--primary-dark); }

.site-logo .logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--bg);
  color: var(--primary);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 0.4rem 1rem !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 200;
  list-style: none;
  padding-left: 0;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  rotate: 45deg;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--bg);
  color: var(--primary);
  padding-left: 1.5rem;
}

.dropdown-arrow {
  font-size: 0.7rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--primary);
    border-radius: 0;
    padding: 0;
    margin-left: 1rem;
    background: var(--bg);
    display: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu li a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Breadcrumb --- */
.breadcrumb-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--primary); }

.breadcrumb-sep {
  color: var(--muted-light);
}

.breadcrumb li:last-child {
  color: var(--dark);
  font-weight: 500;
}

/* --- Sections --- */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--white);
  padding: 4rem 0;
}

.section-sm {
  padding: 2.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: #eff6ff;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 40%, #0ea5e9 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
}

.hero h1 em {
  font-style: normal;
  color: #93c5fd;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-icon {
  font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-width: fit-content;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-success {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-success:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: #f0f9ff;
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  min-width: 200px;
}

.tool-card .btn,
.tool-card-cta .btn,
.comparison-card .btn,
.fazit-card .btn,
.tool-review .btn {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.825rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --- Tool Badge --- */
.tool-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.badge-primary {
  background: #dbeafe;
  color: var(--primary-dark);
}

.badge-success {
  background: #d1fae5;
  color: #065f46;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-orange {
  background: #ffedd5;
  color: #9a3412;
}

.badge-purple {
  background: #ede9fe;
  color: #5b21b6;
}

/* --- Tool Cards --- */
.tool-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.tool-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

.tool-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.tool-logo-area {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.logo-cr { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.logo-ml { background: linear-gradient(135deg, #3498db, #2980b9); }
.logo-br { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.logo-gr { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

.tool-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.tool-tagline {
  font-size: 0.82rem;
  color: var(--muted);
}

.tool-price-info {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.tool-price-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}

.tool-price-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.tool-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.tool-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dark);
}

.tool-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.tool-cta {
  margin-top: auto;
}

/* --- Stars Rating --- */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 1rem;
}

.star-score {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.star-count {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --- Comparison Table --- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  font-size: 0.9rem;
}

.comparison-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  position: sticky;
  top: 64px;
}

.comparison-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.comparison-table thead th .th-tool {
  font-size: 1rem;
  font-weight: 700;
}

.comparison-table thead th .th-price {
  font-size: 0.75rem;
  opacity: 0.7;
  font-weight: 400;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg);
}

.comparison-table tbody tr:hover {
  background: #eff6ff;
}

.comparison-table tbody td {
  padding: 0.85rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.check-yes { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.check-no { color: #ef4444; font-weight: 700; font-size: 1.1rem; }
.check-partial { color: #f59e0b; font-size: 0.8rem; font-weight: 600; }

.table-highlight {
  background: #eff6ff !important;
}

/* --- Use-Case Cards --- */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.use-case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.use-case-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.use-case-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.use-case-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: #eff6ff;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-top: 0.75rem;
}

.use-case-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}

.use-case-link:hover {
  color: var(--primary-dark);
}

/* --- Affiliate Hint Block --- */
.affiliate-hint {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #78350f;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.affiliate-hint-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.affiliate-hint a {
  color: #92400e;
  text-decoration: underline;
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
  font-family: var(--font);
}

.faq-question:hover {
  background: var(--bg);
  color: var(--primary);
}

.faq-question.active {
  color: var(--primary);
  background: #eff6ff;
  border-bottom: 1px solid var(--border);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  color: var(--muted);
}

.faq-question.active .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer.open {
  display: block;
}

.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* --- Pro/Con Lists --- */
.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pro-list,
.con-list {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.pro-list h4,
.con-list h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pro-list h4 { color: var(--accent); }
.con-list h4 { color: #ef4444; }

.pro-list ul,
.con-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pro-list li,
.con-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pro-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.con-list li::before {
  content: '✗';
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Price Table --- */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  min-width: 500px;
}

.price-table thead th {
  background: var(--bg-alt);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.price-table tbody td {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

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

.price-table tbody tr:hover {
  background: var(--bg);
}

.price-highlight {
  font-weight: 700;
  color: var(--primary);
}

/* --- Article Content --- */
.article-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.article-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.article-body ul,
.article-body ol {
  margin-bottom: 1rem;
}

.article-body li {
  margin-bottom: 0.35rem;
}

.article-body p {
  margin-bottom: 1.1rem;
}

.article-intro {
  font-size: 1.05rem;
  color: var(--muted);
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

/* --- Tool Review Section --- */
.tool-review-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.tool-review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.tool-review-info h2 {
  margin-bottom: 0.25rem;
  border: none;
  padding: 0;
}

.tool-review-info .tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

/* --- Step by Step --- */
.steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: step-counter;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

/* --- Info Box --- */
.info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.info-box.success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  border-left-color: var(--accent);
  color: #14532d;
}

.info-box.warning {
  background: #fffbeb;
  border-color: #fde68a;
  border-left-color: #f59e0b;
  color: #78350f;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-about p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-nav h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--white);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-success { color: var(--accent); }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-1 { gap: 0.5rem; }

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .tool-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.2rem;
    box-shadow: var(--shadow);
    z-index: 99;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.6rem 1rem; }

  .tool-cards {
    grid-template-columns: 1fr;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .pro-con-grid {
    grid-template-columns: 1fr;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .section, .section-alt {
    padding: 2.5rem 0;
  }

  .tool-review-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 56px;
  }

  .trust-items {
    gap: 1rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-lg {
    padding: 0.8rem 1.5rem;
  }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .cta-banner { display: none; }
  .section, .section-alt { padding: 1rem 0; }
}
