/* ============================================================
   Red Light Therapy Guide — Main Stylesheet
   redlighttherapyguide.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: #1a0f0f;
  --color-cream: #F7F3F0;
  --color-heading: #1e1010;
  --color-accent: #c0392b;
  --color-accent-hover: #a93226;
  --color-green: #27ae60;
  --color-card: #ede8e4;
  --color-white: #ffffff;
  --color-text: #3a3030;
  --color-muted: #6b5b5b;
  --color-border: #d0c8c4;

  --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.4); }
.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: var(--color-accent); }
.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: #c8c4c4; 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: var(--color-accent); 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); }

/* --- Hero --- */
.hero { background: linear-gradient(135deg, #1a0f0f 0%, #2d1515 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(192,57,43,0.18) 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: var(--color-accent); }
.hero-subtitle { font-size: clamp(1rem, 2.2vw, 1.2rem); color: #c0b4b4; 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.08); border: 1px solid rgba(255,255,255,0.15); color: #d0c8c8; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 100px; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* --- 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(192,57,43,0.35); }
.btn--ghost { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.3); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--color-white); }
.btn--secondary { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn--secondary:hover { background: var(--color-accent); color: white; }

/* --- Featured Section --- */
.featured-section { padding: 4rem 0; }
.section-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); margin-bottom: 1rem; }
.featured-article { background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 2.5rem; margin-bottom: 3rem; }
.featured-article__meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.article-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 100px; }
.article-tag--roundup { background: #fde8e6; color: #c0392b; }
.article-tag--comparison { background: #e8f0fd; color: #2c6bc0; }
.article-tag--howto { background: #e8f8ed; color: #1e7e40; }
.article-date { font-size: 0.82rem; color: var(--color-muted); }
.featured-article__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.featured-article__desc { color: var(--color-muted); margin-bottom: 1.25rem; }
.featured-article__highlights { margin-bottom: 1.5rem; }
.featured-article__highlights li { margin-bottom: 0.4rem; font-size: 0.95rem; }

/* --- Articles Section --- */
.articles-section { background: var(--color-card); padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--color-muted); margin-bottom: 0; font-size: 1.05rem; }
.section-title--light { color: var(--color-white); }
.section-subtitle--light { color: #c0b4b4; }

/* --- 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); padding: 1.5rem; overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card__tag-row { margin-bottom: 0.75rem; }
.card__title { font-size: 1.25rem; margin-bottom: 0.6rem; line-height: 1.2; }
.card__title a { color: var(--color-heading); }
.card__title a:hover { color: var(--color-accent); text-decoration: none; }
.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, #1a0f0f 0%, #2d1515 100%); padding: 4rem 0; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.stat-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.stat-box__number { font-family: var(--font-heading); font-size: 2.8rem; color: var(--color-accent); line-height: 1; margin-bottom: 0.25rem; }
.stat-box__label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-white); margin-bottom: 0.5rem; }
.stat-box__desc { font-size: 0.82rem; color: #c0b4b4; }

/* --- Article stat boxes (inline) --- */
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-accent); line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.82rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* --- CTA Section --- */
.cta-section { background: linear-gradient(135deg, #1a0f0f 0%, #2d1515 100%); color: var(--color-white); padding: 4rem 1.25rem; text-align: center; }
.cta-section h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-section p { color: #c0b4b4; max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-box { max-width: 680px; margin: 0 auto; }
.cta-box__title { color: var(--color-white); margin-bottom: 1rem; }
.cta-box__desc { color: #c0b4b4; margin-bottom: 2rem; }
.cta-box__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.site-footer { background-color: var(--color-dark); color: #9d9090; 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: #9d9090; font-size: 0.875rem; text-decoration: none; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--color-accent); 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: #9d9090; }
.footer-bottom a:hover { color: var(--color-accent); }

/* --- Disclosure Banner --- */
.disclosure-banner { background: #fdf0ef; border: 1px solid #f0c8c4; border-radius: var(--radius); padding: 0.75rem 1.25rem; font-size: 0.82rem; color: var(--color-muted); margin-bottom: 1.5rem; line-height: 1.5; }

/* --- Article Header --- */
.article-header { background: linear-gradient(135deg, #1a0f0f 0%, #2d1515 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: #b0a4a4; }

/* --- 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 Box --- */
.product-box { background: var(--color-white); border: 2px solid var(--color-card); border-radius: var(--radius-lg); padding: 1.5rem; margin: 1.75rem 0; display: flex; gap: 1.25rem; align-items: flex-start; box-shadow: var(--shadow); transition: box-shadow var(--transition); }
.product-box:hover { box-shadow: var(--shadow-hover); }
.product-box.top-pick { border-color: var(--color-accent); }
.product-badge { background: var(--color-accent); color: white; font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 0.06em; padding: 0.25rem 0.65rem; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
.product-badge.budget { background: var(--color-green); }
.product-badge.premium { background: #7b2d2d; }
.product-icon { font-size: 2.5rem; flex-shrink: 0; width: 60px; text-align: center; }
.product-info { flex: 1; }
.product-info h4 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.product-price { color: var(--color-green); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.product-info p { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 0.75rem; }
.product-cta { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--color-accent); color: white; font-size: 0.85rem; font-weight: 700; padding: 0.55rem 1.2rem; border-radius: var(--radius); text-decoration: none; transition: all var(--transition); }
.product-cta:hover { background: var(--color-accent-hover); color: white; text-decoration: none; transform: translateY(-1px); }

/* --- 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: #f0f8f1; border-left: 4px solid var(--color-green); }
.cons { background-color: #fff7f4; border-left: 4px solid #c0392b; }
.pros h4 { font-size: 1rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-green); }
.cons h4 { font-size: 1rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; 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-green); font-weight: 700; }
.cons ul li::before { content: '✗'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

/* --- 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: #fffbf0; border-left: 4px solid #f0a500; }
.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: #f0f5ff; border-left: 4px solid #3a6fd8; }
.info-box.note h4 { color: #2d5abf; }

/* --- Review Data Box --- */
.review-data { background: #fdf2f0; border: 1px solid #f0c8c4; border-left: 4px solid var(--color-accent); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.review-data h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-accent); margin-bottom: 0.75rem; }
.review-data-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.3rem 0; font-size: 0.88rem; border-bottom: 1px solid #f0d0cc; }
.review-data-row:last-child { border-bottom: none; }
.review-data-pct { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-accent); min-width: 52px; }

/* --- Methodology Box --- */
.methodology-box { background: linear-gradient(135deg, #1a0f0f 0%, #2d1515 100%); color: #c8b4b4; border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin: 2rem 0; }
.methodology-box h4 { color: #e8a4a0; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.methodology-box p { font-size: 0.88rem; color: #b0a0a0; margin: 0; }

/* --- 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); }

/* --- 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: #faf7f5; }
.comparison-table tr:hover { background-color: #f5eeec; }

/* --- Sources --- */
.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 / Policy Pages --- */
.about-hero { background: linear-gradient(135deg, #1a0f0f, #2d1515); 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-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; }

/* --- Rating --- */
.rating { color: #c9a227; font-size: 1rem; letter-spacing: 0.05em; }
.rating-count { color: var(--color-muted); font-size: 0.82rem; margin-left: 0.35rem; }

/* --- Pick Badges --- */
.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: var(--color-green); }
.pick-label.premium { background: #7b2d2d; }

/* --- 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; }
  .product-box { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
}

@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; }
}

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