/* ============================================================
   Foam Roller Guide — Main Stylesheet
   foamrollerguide.com
   ============================================================ */

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

/* --- CSS Custom Properties --- */
:root {
  --color-dark: #0f1f2e;
  --color-cream: #F4F7F4;
  --color-heading: #1a2e1a;
  --color-accent: #2E7D32;
  --color-accent-hover: #1b5e20;
  --color-blue: #1565C0;
  --color-card: #e8f0e8;
  --color-white: #ffffff;
  --color-text: #2d3d2d;
  --color-muted: #5a6b5a;
  --color-border: #c8d8c8;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;

  --max-width: 1120px;
  --max-width-article: 800px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

strong { font-weight: 700; color: var(--color-heading); }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.section {
  padding: 4rem 0;
}

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

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); font-size: 0.9rem; }

/* --- Navigation --- */
.site-nav {
  background-color: var(--color-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo span {
  color: #4CAF50;
}

.nav-logo:hover {
  color: var(--color-white);
  text-decoration: none;
}

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

.nav-links a {
  color: #c8c8cc;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: #4CAF50;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* --- Disclosure Banner --- */
.disclosure-banner {
  background: #e8f5e9;
  border-bottom: 1px solid #c8e6c9;
  padding: 0.6rem 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.disclosure-banner a { color: var(--color-accent); }

/* --- Hero --- */
.hero {
  background-color: var(--color-dark);
  background-image: linear-gradient(135deg, #0f1f2e 0%, #1a3a1a 100%);
  color: var(--color-white);
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(46,125,50,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span {
  color: #4CAF50;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #c0c8c0;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #d0d8d0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn:hover { text-decoration: none; }

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

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(46,125,50,0.35);
}

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

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

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

.btn--secondary:hover {
  background-color: #1a3530;
  color: var(--color-white);
}

/* --- Hero CTA --- */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* --- Featured Section --- */
.featured-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.featured-article {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
}

.featured-article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.article-tag--roundup {
  background: #e8f5e9;
  color: #1b5e20;
}

.article-tag--comparison {
  background: #e3f2fd;
  color: #1565c0;
}

.article-tag--howto {
  background: #fff3e0;
  color: #e65100;
}

.article-date {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.featured-article__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.featured-article__desc {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.featured-article__highlights {
  margin-bottom: 1.5rem;
}

.featured-article__highlights li {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

/* --- Articles Section --- */
.articles-section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card__tag-row {
  margin-bottom: 0.5rem;
}

.card__title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.card__title a {
  color: var(--color-heading);
  text-decoration: none;
}

.card__title a:hover {
  color: var(--color-accent);
}

.card__excerpt {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card__read-time {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* --- Stats Section --- */
.stats-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a3a1a 100%);
  padding: 4rem 0;
}

.section-title--light {
  color: var(--color-white);
}

.section-subtitle--light {
  color: #a0b8a0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-box {
  text-align: center;
}

.stat-box__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #4CAF50;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-box__label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.stat-box__desc {
  font-size: 0.82rem;
  color: #90a890;
}

/* --- CTA Section --- */
.cta-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.cta-box {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a3a1a 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-box__title {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-box__desc {
  color: #c0d0c0;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

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

/* --- Footer --- */
.site-footer {
  background-color: var(--color-dark);
  color: #90a890;
  padding: 3rem 1.25rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .nav-logo {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

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

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: #90a890;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: #4CAF50;
  text-decoration: none;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #90a890;
}

.footer-bottom a:hover {
  color: #4CAF50;
}

/* --- Article Header --- */
.article-header {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a3a1a 100%);
  color: var(--color-white);
  padding: 4rem 1.25rem 3rem;
  text-align: center;
}

.article-header h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.article-meta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #90a890;
}

/* --- Article Content --- */
.article-content {
  padding: 3rem 0 4rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 3px solid var(--color-accent);
  display: inline-block;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.article-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
}

.article-content li {
  margin-bottom: 0.4rem;
  font-size: 0.975rem;
}

.article-content .lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
}

/* --- TOC --- */
.toc {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.toc h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
}

.toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.toc li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

.toc a {
  color: var(--color-heading);
}

.toc a:hover {
  color: var(--color-accent);
}

/* --- Product Card --- */
.product-card {
  background: var(--color-white);
  border: 2px solid var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
}

.product-card.top-pick {
  border-color: var(--color-accent);
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.product-card-title-wrap { flex: 1; }

.product-card-title-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--color-heading);
}

.product-card-subtitle {
  color: var(--color-muted);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.pick-label {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.pick-label.budget { background: #388E3C; }
.pick-label.premium { background: #1565C0; }

.product-price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.rating {
  color: #F9A825;
  font-size: 0.95rem;
}

.rating-count {
  color: var(--color-muted);
  font-size: 0.82rem;
  margin-left: 0.35rem;
}

/* --- Pros/Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.pros, .cons {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.pros {
  background-color: #f1f8f1;
  border-left: 4px solid var(--color-accent);
}

.cons {
  background-color: #fff7f4;
  border-left: 4px solid #c0392b;
}

.pros h4, .cons h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pros h4 { color: var(--color-accent); }
.cons h4 { color: #c0392b; }

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros ul li, .cons ul li {
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}

.pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

/* --- Product CTA Button --- */
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 0.75rem;
}

.product-cta:hover {
  background: var(--color-accent-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* --- Info Boxes --- */
.info-box {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.info-box .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-box-body h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.info-box-body p {
  font-size: 0.9rem;
  margin: 0;
}

.info-box.tip {
  background: #fffde7;
  border-left: 4px solid #F9A825;
}

.info-box.tip h4 { color: #c47f00; }

.info-box.warning {
  background: #fff7f4;
  border-left: 4px solid #c0392b;
}

.info-box.warning h4 { color: #c0392b; }

.info-box.note {
  background: #f1f8f1;
  border-left: 4px solid var(--color-accent);
}

.info-box.note h4 { color: var(--color-accent); }

/* --- FAQ --- */
.faq-list {
  margin: 2rem 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question::-webkit-details-marker { display: none; }

details[open] .faq-question::after { content: '−'; }
.faq-question::after {
  content: '+';
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-answer {
  padding-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* --- Methodology Box --- */
.methodology-box {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a3a1a 100%);
  color: #c0d0c0;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.methodology-box h4 {
  color: #4CAF50;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.methodology-box p {
  font-size: 0.88rem;
  color: #90a890;
  margin: 0;
}

/* --- Sources Section --- */
.sources-section {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

.sources-section h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.sources-section ol {
  margin: 0;
  color: var(--color-muted);
}

.sources-section li { margin-bottom: 0.35rem; }

/* --- Related Articles --- */
.related-articles {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
}

.related-articles h3 {
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-articles ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.related-articles ul li:last-child {
  border-bottom: none;
}

/* --- About Page --- */
.about-hero {
  background: linear-gradient(135deg, var(--color-dark), #1a3a1a);
  color: white;
  padding: 5rem 1.25rem;
  text-align: center;
}

.about-hero h1 { color: white; margin-bottom: 1rem; }

.about-content {
  padding: 4rem 0;
}

.about-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* --- Policy Pages --- */
.policy-header {
  background: var(--color-dark);
  color: white;
  padding: 3.5rem 1.25rem;
  text-align: center;
}

.policy-header h1 { color: white; margin-bottom: 0.5rem; }

.policy-content {
  padding: 3rem 0 5rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.policy-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* --- Comparison Table --- */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.9rem;
}

.comparison-table th {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

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

.comparison-table tr:nth-child(even) {
  background-color: #f4f8f4;
}

.comparison-table tr:hover {
  background-color: #eaf4ea;
}

/* --- Step List --- */
.step-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.step-list li {
  counter-increment: steps;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 0.75rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  font-size: 0.95rem;
}

.step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0;
}

/* ============================================================
   Responsive / Mobile
   ============================================================ */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 1rem 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.7rem 1.5rem;
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: relative;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .product-card-header {
    flex-direction: column;
  }
}

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

  .comparison-table th,
  .comparison-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }
}

/* --- Print --- */
@media print {
  .site-nav, .site-footer, .cta-section { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
