/* ============================================================
   TradeAIHQ — Global Stylesheet
   Design System: uirail.md | tradeaihq.com
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --surface:      #141414;
  --surface2:     #1a1a1a;
  --border:       #252525;
  --text:         #e4e4e4;
  --text-muted:   #888;
  --accent:       #6ee7b7;
  --accent-hover: #34d399;
  --danger:       #e05555;
  --radius:       10px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
ul, ol { padding-left: 20px; }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -48px; left: 0;
  background: var(--accent); color: #000;
  font-weight: 700; padding: 10px 20px;
  border-radius: 0 0 var(--radius) 0;
  z-index: 200; transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ── Focus Ring ─────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Type Scale ─────────────────────────────────────────────── */
h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--text);
}
h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; line-height: 1.2;
  color: var(--text);
}
h3 { font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--text); }
h4 { font-size: 15px; font-weight: 700; color: var(--text); }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.content-wrapper { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.article-body    { max-width: 760px;  margin: 0 auto; }

/* ── Sticky Header ──────────────────────────────────────────── */
.sticky-header { position: sticky; top: 0; z-index: 100; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(20,20,20,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 17px; font-weight: 800;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.nav-logo-accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* hamburger (mobile) */
.nav-toggle {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-muted); border-radius: 2px;
  transition: background 0.15s;
}
.nav-toggle:hover span { background: var(--text); }

/* Quick-nav pill strip */
.quick-nav {
  background: rgba(20,20,20,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px;
}
.quick-nav-inner {
  display: flex; align-items: center; gap: 8px;
  max-width: 1080px; margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.quick-nav-inner::-webkit-scrollbar { display: none; }

.quick-nav-pill {
  display: inline-flex; align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px; font-weight: 500;
  white-space: nowrap; text-decoration: none;
  transition: color 0.15s, background 0.15s, border-color 0.15s, transform 0.12s;
}
.quick-nav-pill:hover {
  color: var(--text); border-color: var(--text-muted);
  background: var(--surface); transform: scale(1.05);
}
.quick-nav-pill:active { transform: scale(0.95); }
.quick-nav-pill--active {
  color: var(--accent); border-color: var(--accent);
  background: rgba(110,231,183,0.08);
}

/* ── Hero Banner ────────────────────────────────────────────── */
.hero-banner {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  margin: 32px 24px 48px;
  background: var(--surface);
}
.hero-img {
  width: 100%; max-height: 480px; object-fit: cover;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 48px; max-width: 720px;
}
.hero-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: #fff; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hero-text {
  font-size: clamp(15px,1.5vw,18px); color: rgba(255,255,255,0.8);
  line-height: 1.6; margin-bottom: 22px;
}
.hero-cta { color: var(--accent); font-size: 15px; font-weight: 700; margin: 0; }

@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 1.8s ease-in-out infinite;
  opacity: 0.55; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-indicator-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-indicator-wheel {
  width: 4px; height: 6px;
  background: rgba(255,255,255,0.65); border-radius: 2px;
}
.scroll-indicator-label {
  font-size: 11px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Category Card Grid ─────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 16px;
}
.category-card-link { text-decoration: none; display: block; }
.category-card {
  background: var(--surface2); border: 1px solid #2a2a2a;
  border-radius: var(--radius); overflow: hidden; position: relative;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
}
.category-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(255,255,255,0.04),transparent);
  opacity: 0; transition: opacity 0.2s ease; pointer-events: none;
}
.category-card-link:hover .category-card {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.category-card-link:hover .category-card::after { opacity: 1; }

.category-card-icon {
  width: 100%; height: 110px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; background: var(--surface);
  transition: transform 0.3s ease;
}
.category-card-link:hover .category-card-icon { transform: scale(1.08); }

.category-card-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; }
.category-card-body h3 { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; }
.category-card-body p  { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.category-card-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: var(--accent); margin-top: 4px;
}
.cta-arrow { display: inline-block; transition: transform 0.18s ease; }
.category-card-link:hover .cta-arrow { transform: translateX(4px); }

/* ── Tier Badge ─────────────────────────────────────────────── */
.tier-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.tier-badge--1 {
  background: rgba(110,231,183,0.1); color: var(--accent);
  border: 1px solid rgba(110,231,183,0.25);
}
.tier-badge--2 {
  background: rgba(136,136,136,0.08); color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ── Page Hero (text-only, no image) ────────────────────────── */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.page-hero-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero-intro {
  font-size: 18px; color: var(--text-muted);
  line-height: 1.7; max-width: 680px;
}
.page-hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 13px; color: var(--text-muted);
  padding: 14px 0; margin-bottom: 8px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* ── Affiliate Disclosure Banner ────────────────────────────── */
.affiliate-banner {
  background: rgba(110,231,183,0.05);
  border: 1px solid rgba(110,231,183,0.15);
  border-radius: 8px;
  padding: 11px 16px; margin-bottom: 28px;
}
.affiliate-banner p {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.5; margin: 0;
}
.affiliate-banner a { color: var(--accent); }

/* ── Comparison Table ───────────────────────────────────────── */
.comparison-table-wrap {
  overflow-x: auto; margin: 28px 0;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table th {
  background: var(--surface2); color: var(--text-muted);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comparison-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--surface2); }
.comparison-table .col-name { font-weight: 700; white-space: nowrap; }
.comparison-table .col-price { color: var(--accent); font-weight: 600; white-space: nowrap; }
.comparison-table .col-cta a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px;
  background: rgba(110,231,183,0.08);
  border: 1px solid rgba(110,231,183,0.28);
  border-radius: 7px; color: var(--accent);
  font-size: 12px; font-weight: 600;
  white-space: nowrap; text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.comparison-table .col-cta a:hover {
  background: rgba(110,231,183,0.16); border-color: var(--accent);
}
.check  { color: var(--accent); }
.cross  { color: var(--text-muted); }

/* ── Review Card ────────────────────────────────────────────── */
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
  margin-bottom: 20px; position: relative;
  transition: border-color 0.18s ease;
}
.review-card:hover { border-color: rgba(110,231,183,0.3); }
.review-card-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 14px;
  margin-bottom: 10px; flex-wrap: wrap;
}
.review-card-name { font-size: 17px; font-weight: 700; color: var(--text); }
.review-card-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: #f59e0b;
  white-space: nowrap;
}
.review-card-badges {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px;
}
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 6px; font-size: 12px; font-weight: 600; color: var(--text-muted);
}
.badge--verdict {
  background: rgba(110,231,183,0.08);
  border-color: rgba(110,231,183,0.25); color: var(--accent);
}
.review-card-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 14px;
}
.review-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: var(--accent);
  color: #000; font-weight: 700; font-size: 14px;
  border-radius: 8px; text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.review-card-cta:hover { background: var(--accent-hover); color: #000; transform: translateY(-1px); }

/* ── Pros / Cons Block ──────────────────────────────────────── */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin: 20px 0;
}
.pros-cons-col {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}
.pros-cons-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 10px;
}
.pros-cons-col.pros h4 { color: var(--accent); }
.pros-cons-col.cons h4 { color: var(--danger); }
.pros-cons-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.pros-cons-col li {
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.pros-cons-col.pros li::before { content:'✓'; position:absolute; left:0; color:var(--accent); font-weight:700; }
.pros-cons-col.cons li::before { content:'✗'; position:absolute; left:0; color:var(--danger); font-weight:700; }

/* ── Highlight Box ──────────────────────────────────────────── */
.highlight-box {
  background: rgba(110,231,183,0.05);
  border: 1px solid rgba(110,231,183,0.18);
  border-radius: var(--radius); padding: 18px 22px; margin: 22px 0;
}
.highlight-box p { font-size: 15px; color: var(--text); margin: 0; line-height: 1.7; }

/* ── Disclaimer Block (Finance / Insurance) ─────────────────── */
.disclaimer-block {
  background: var(--surface2); border: 1px solid var(--border);
  border-left: 3px solid var(--text-muted);
  border-radius: var(--radius); padding: 14px 18px; margin: 28px 0;
}
.disclaimer-block p {
  font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0;
}
.disclaimer-block p+p { margin-top: 6px; }

/* ── CTA Button ─────────────────────────────────────────────── */
.cta-button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--accent);
  color: #000; font-weight: 700; font-size: 15px;
  border-radius: var(--radius); border: none;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}
.cta-button:hover { background: var(--accent-hover); color: #000; transform: translateY(-1px); }
.cta-button:active { transform: translateY(0); }
.cta-button--outline {
  background: transparent;
  border: 1px solid var(--accent); color: var(--accent);
}
.cta-button--outline:hover { background: rgba(110,231,183,0.1); }

/* ── In-Article CTA Block ───────────────────────────────────── */
.article-cta {
  background: var(--surface); border: 1px solid rgba(110,231,183,0.2);
  border-radius: var(--radius); padding: 28px 32px;
  margin: 40px 0; text-align: center;
}
.article-cta-headline {
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: 8px;
}
.article-cta-sub {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 20px;
}
.article-cta-note {
  font-size: 12px; color: var(--text-muted);
  margin-top: 10px; margin-bottom: 0;
}

/* ── FAQ Section ────────────────────────────────────────────── */
.faq-section { margin: 48px 0; }
.faq-section > h2 { margin-bottom: 24px; }

.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 8px; overflow: hidden;
}
.faq-question {
  width: 100%; background: var(--surface); border: none;
  padding: 17px 20px; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  transition: background 0.15s; font-family: inherit;
}
.faq-question:hover { background: var(--surface2); }
.faq-icon {
  font-size: 20px; color: var(--accent); flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-answer {
  display: none; padding: 4px 20px 18px;
  background: var(--surface);
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon   { transform: rotate(45deg); }

/* ── Further Reading Strip ──────────────────────────────────── */
.further-reading {
  margin: 48px 0; padding: 32px 0;
  border-top: 1px solid var(--border);
}
.further-reading-heading {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.further-reading-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 12px;
}
.fr-card {
  position: relative; overflow: hidden;
  padding: 15px 17px; background: var(--surface2);
  border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; display: flex; flex-direction: column; gap: 5px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.fr-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.2s ease;
}
.fr-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(110,231,183,0.06) 0%,transparent 60%);
  opacity: 0; transition: opacity 0.2s ease; pointer-events: none;
}
.fr-card:hover {
  transform: translateY(-3px); border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(110,231,183,0.15);
}
.fr-card:hover::before { transform: scaleY(1); }
.fr-card:hover::after  { opacity: 1; }
.fr-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.15s;
}
.fr-card:hover .fr-card-label { color: var(--accent); }
.fr-card-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }
.fr-card-arrow {
  font-size: 13px; font-weight: 600; color: var(--accent);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  margin-top: auto;
}
.fr-card:hover .fr-card-arrow { opacity: 1; transform: translateX(0); }

/* ── Prose (article body) ───────────────────────────────────── */
.prose h2 { margin-top: 40px; margin-bottom: 14px; padding-top: 4px; }
.prose h3 { margin-top: 26px; margin-bottom: 10px; }
.prose p  { margin-bottom: 16px; }
.prose ul, .prose ol { margin-bottom: 16px; }
.prose li { margin-bottom: 5px; line-height: 1.65; }
.prose a  {
  color: var(--accent); text-decoration: underline;
  text-decoration-color: rgba(110,231,183,0.3); text-underline-offset: 3px;
}
.prose a:hover { color: var(--accent-hover); text-decoration-color: var(--accent-hover); }
.prose strong { color: var(--text); font-weight: 700; }
.prose blockquote {
  border-left: 3px solid var(--accent); padding-left: 18px;
  margin: 22px 0; color: var(--text-muted); font-style: italic;
}

/* ── Section / Divider Helpers ──────────────────────────────── */
.section { padding: 44px 0; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.section-heading { font-size: clamp(22px,2.5vw,30px); font-weight: 800; letter-spacing: -0.02em; }
.section-subheading { font-size: 16px; color: var(--text-muted); margin-top: 6px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  margin-top: 80px; border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  font-size: 17px; font-weight: 800;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.02em; display: inline-block; margin-bottom: 10px;
}
.footer-brand .footer-logo-accent { color: var(--accent); }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1080px; margin: 28px auto 0;
  padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p  { font-size: 12px; color: var(--text-muted); margin: 0; }
.footer-bottom a  { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links .nav-hide-mobile { display: none; }
  .nav-toggle { display: flex; }

  .hero-banner { margin: 16px 12px 32px; }
  .hero-overlay { position: relative; padding: 22px 20px; max-width: 100%; }
  .hero-img { max-height: 240px; }

  .further-reading-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .pros-cons { grid-template-columns: 1fr; }
  .article-cta { padding: 22px 18px; }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .content-wrapper { padding: 0 16px; }
  .card-grid { grid-template-columns: 1fr; }
  .further-reading-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .comparison-table { font-size: 13px; }
  .comparison-table td, .comparison-table th { padding: 10px 12px; }
}

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
