/* ============================================= */
/* CRISPYPICKS - CLEAN EDITORIAL DESIGN SYSTEM */
/* ============================================= */

/* Base styles and reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #ffffff;
  --bg-subtle: #f9fafb;
  --bg-muted: #f3f4f6;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --text: #111827;
  --text-muted: #6b7280;
  --text-subtle: #9ca3af;
  --accent: #e85d04;
  --accent-light: #fff3e0;
  --accent-hover: #c94b00;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --star: #f59e0b;
  --terracotta: #9A3412;
  --terracotta-light: #FEF0E7;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --max-w: 740px;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body { 
  font-family: var(--font); 
  font-size: 17px; 
  line-height: 1.75; 
  color: var(--text); 
  background: var(--bg); 
  -webkit-font-smoothing: antialiased; 
}

::selection {
    background: var(--accent);
    color: white;
}

html {
    scroll-behavior: smooth;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* NAV */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-img {
  height: 44px;
  display: block;
}

.main-nav.desktop-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--text);
}

.mobile-menu-toggle {
  display: none;
}

@media(max-width: 768px) {
  .main-nav.desktop-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* LAYOUT */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px 64px;
}

/* BREADCRUMB */
.breadcrumb { 
  font-size: 13px; 
  color: var(--text-subtle); 
  padding: 16px 0 0; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}

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

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

/* ARTICLE HEADER */
.post-header { 
  padding: 20px 0 0; 
}

.post-header h1 { 
  font-size: clamp(26px, 5vw, 38px); 
  font-weight: 800; 
  line-height: 1.15; 
  letter-spacing: -.03em; 
  color: var(--text); 
  margin-bottom: 14px; 
}

.article-deck { 
  font-size: 18px; 
  color: var(--text-muted); 
  line-height: 1.55; 
  margin-bottom: 16px; 
  font-weight: 400; 
}

.post-meta { 
  display: flex; 
  flex-wrap: wrap; 
  align-items: center; 
  gap: 12px; 
  font-size: 13px; 
  color: var(--text-subtle); 
  padding-bottom: 20px; 
}

.meta-dot { 
  width: 3px; 
  height: 3px; 
  border-radius: 50%; 
  background: var(--border); 
}

/* HERO IMAGE */
.post-image { 
  width: calc(100% + 40px); 
  margin-left: -20px; 
  margin-right: -20px; 
  margin-bottom: 28px; 
}

.post-image img { 
  width: 100%; 
  height: 380px; 
  object-fit: cover; 
  display: block; 
}

@media(max-width:520px) { 
  .post-image img { height: 240px; } 
}

/* AFFILIATE DISCLOSURE */
.disclosure { 
  background: var(--bg-subtle); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 12px 16px; 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0 0 28px; 
  display: flex; 
  gap: 10px; 
  align-items: flex-start; 
}

/* TOC */
.toc { 
  background: var(--bg-subtle); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-lg); 
  padding: 20px 24px; 
  margin: 0 0 36px; 
}

.toc-label { 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  color: var(--terracotta); 
  margin-bottom: 12px; 
}

.toc ol { 
  padding-left: 20px; 
}

.toc li { 
  margin: 5px 0; 
}

.toc a { 
  font-size: 14px; 
  font-weight: 500; 
  color: var(--text-muted); 
  text-decoration: none; 
}

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

/* SECTION LABEL */
.section-label { 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  color: var(--terracotta); 
  margin: 0 0 20px; 
  padding-bottom: 12px; 
  border-bottom: 2px solid var(--terracotta); 
  display: inline-block; 
}

/* PRODUCT CARD */
.product-card { 
  border: 1px solid var(--border); 
  border-radius: var(--radius-lg); 
  overflow: hidden; 
  margin: 0 0 32px; 
  background: var(--bg); 
  box-shadow: var(--shadow); 
  transition: box-shadow .2s; 
}

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

.product-image { 
  width: 100%; 
  height: 280px; 
  object-fit: cover; 
  display: block; 
  background: var(--bg-subtle); 
}

@media(max-width:520px) { 
  .product-image { height: 220px; } 
}

.product-card-body { 
  padding: 20px 24px 24px; 
}

@media(max-width:520px) { 
  .product-card-body { padding: 16px 16px 20px; } 
}

.product-card-top { 
  display: flex; 
  align-items: flex-start; 
  justify-content: space-between; 
  gap: 12px; 
  margin-bottom: 12px; 
}

.product-rank { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .04em; 
  color: var(--text-subtle); 
  white-space: nowrap; 
  flex-shrink: 0; 
  text-transform: uppercase; 
}

.rank-best { color: var(--terracotta); }
.rank-family { color: var(--text-muted); }
.rank-budget { color: var(--green); }

.product-name { 
  font-size: 21px; 
  font-weight: 700; 
  letter-spacing: -.02em; 
  color: var(--text); 
  line-height: 1.2; 
}

.product-subtitle { 
  font-size: 14px; 
  color: var(--text-muted); 
  margin-top: 3px; 
}

.product-stars { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  margin: 10px 0; 
}

.stars { 
  color: var(--star); 
  font-size: 16px; 
  letter-spacing: 2px; 
}

.star-count { 
  font-size: 13px; 
  color: var(--text-muted); 
}

.product-verdict { 
  font-size: 16px; 
  color: var(--text); 
  line-height: 1.65; 
  margin: 10px 0 16px; 
}

.pros-cons { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 12px; 
  margin: 0 0 20px; 
}

@media(max-width:520px) { 
  .pros-cons { grid-template-columns: 1fr; } 
}

.pros, .cons { 
  background: var(--bg-subtle); 
  border-radius: var(--radius); 
  padding: 14px 16px; 
}

.pros-label, .cons-label { 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .06em; 
  text-transform: uppercase; 
  margin-bottom: 8px; 
}

.pros-label { color: var(--green); }
.cons-label { color: #dc2626; }

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

.pros li, .cons li { 
  font-size: 14px; 
  padding: 3px 0; 
  color: var(--text); 
  display: flex; 
  gap: 7px; 
  align-items: flex-start; 
  line-height: 1.4; 
}

.pros li::before { 
  content: "✓"; 
  color: var(--green); 
  font-weight: 700; 
  flex-shrink: 0; 
  margin-top: 1px; 
}

.cons li::before { 
  content: "✕"; 
  color: #dc2626; 
  font-weight: 700; 
  flex-shrink: 0; 
  margin-top: 1px; 
}

.product-cta { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  flex-wrap: wrap; 
  padding-top: 4px; 
}

.btn-primary { 
  background: var(--accent); 
  color: #fff; 
  font-size: 15px; 
  font-weight: 600; 
  padding: 11px 22px; 
  border-radius: var(--radius); 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  transition: background .15s; 
}

.btn-primary:hover { 
  background: var(--accent-hover); 
}

.price-range { 
  font-size: 14px; 
  color: var(--text-muted); 
}

/* INLINE IMAGE (breaks up text) */
.inline-image { 
  width: calc(100% + 40px); 
  margin-left: -20px; 
  margin-right: -20px; 
  margin: 32px -20px; 
}

.inline-image img { 
  width: 100%; 
  height: 300px; 
  object-fit: cover; 
  display: block; 
}

.inline-image figcaption { 
  padding: 8px 20px; 
  font-size: 13px; 
  color: var(--text-subtle); 
  font-style: italic; 
}

@media(max-width:520px) { 
  .inline-image img { height: 200px; } 
}

/* BODY COPY */
.post-content h2 { 
  font-size: 24px; 
  font-weight: 700; 
  letter-spacing: -.02em; 
  margin: 40px 0 12px; 
  color: var(--text); 
  border-bottom: 1px solid var(--border); 
  padding-bottom: 10px; 
  padding-left: 12px; 
  border-left: 3px solid var(--terracotta); 
}

.post-content h3 { 
  font-size: 18px; 
  font-weight: 600; 
  margin: 28px 0 10px; 
}

.post-content p { 
  margin: 0 0 20px; 
  color: var(--text); 
}

.post-content strong { 
  font-weight: 600; 
}

.post-content a {
  color: var(--accent);
  text-decoration: none;
}

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

/* TABLES */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.post-content thead th {
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  white-space: nowrap;
}
.post-content tbody tr:nth-child(even) {
  background: #fff7ed;
}
.post-content tbody tr:hover {
  background: #ffe4cc;
}
.post-content td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.post-content td:first-child {
  font-weight: 600;
}

/* CALLOUT */
.callout { 
  background: #fff7ed; 
  border-left: 3px solid var(--accent); 
  border-radius: 0 var(--radius) var(--radius) 0; 
  padding: 14px 18px; 
  margin: 24px 0; 
}

.callout-label { 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  color: var(--terracotta); 
  margin-bottom: 6px; 
}

.callout p { 
  margin: 0; 
  font-size: 15px; 
  color: var(--text); 
}

/* METHODOLOGY */
.methodology { 
  background: var(--bg-subtle); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-lg); 
  padding: 20px 24px; 
  margin: 48px 0 0; 
  font-size: 14px; 
}

.methodology-label { 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  color: var(--terracotta); 
  margin-bottom: 8px; 
}

.methodology p { 
  color: var(--text-muted); 
  line-height: 1.6; 
  margin: 0; 
}

/* COMPARISON SECTION */
.comparison { margin: 48px 0; }
.comparison-title { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 4px; }
.comparison-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.compare-card { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; background: var(--bg); }
.compare-header { display: flex; align-items: center; gap: 14px; padding: 16px 20px; }
.compare-rank-num { font-size: 13px; font-weight: 700; color: var(--text-subtle); width: 20px; flex-shrink: 0; }
.compare-name { font-size: 16px; font-weight: 600; color: var(--text); flex: 1; }
.compare-score { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -.03em; flex-shrink: 0; }
.compare-score span { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.compare-body { border-top: 1px solid var(--border); padding: 0 20px 20px; }
.compare-rows { margin-top: 16px; }
.compare-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-row:last-child { border-bottom: none; }
.compare-label { color: var(--text-muted); font-weight: 500; }
.compare-value { font-weight: 600; color: var(--text); text-align: right; }
.compare-bar-wrap { display: flex; align-items: center; gap: 10px; }
.compare-bar-track { width: 80px; height: 5px; background: var(--bg-muted); border-radius: 99px; overflow: hidden; flex-shrink: 0; }
.compare-bar-fill { height: 100%; border-radius: 99px; background: var(--terracotta); }
.compare-cta { margin-top: 14px; display: flex; align-items: center; gap: 12px; }
.compare-card.best-pick { border-color: var(--terracotta); }
.compare-card.best-pick .compare-header { background: var(--terracotta-light); }
.best-pick-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--terracotta); background: white; border: 1px solid var(--terracotta); padding: 2px 7px; border-radius: 4px; flex-shrink: 0; }

/* FOOTER */
.site-footer { 
  border-top: 1px solid var(--border); 
  padding: 32px 20px; 
  font-size: 13px; 
  color: var(--text-subtle); 
  text-align: center; 
}

.site-footer a { 
  color: inherit; 
}

/* HOMEPAGE STYLES */
.hero {
  background: var(--bg);
  padding: 64px 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.trust-item strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

/* ARTICLE CARDS */
.popular-articles {
  padding: 64px 0;
}

.popular-articles h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.popular-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

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

.popular-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.popular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
}

.popular-content {
  padding: 24px;
}

.popular-content h3 {
  margin-bottom: 12px;
}

.popular-content h3 a {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.popular-content h3 a:hover {
  color: var(--accent);
}

.popular-excerpt {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-subtle);
}

.category a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
}

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

/* Mobile styles */
@media (max-width: 768px) {
  .container {
    padding: 0 16px 48px;
  }
  
  .trust-bar {
    gap: 16px;
  }
  
  .trust-item {
    min-width: 120px;
  }
  
  .popular-grid {
    grid-template-columns: 1fr;
  }
}

/* Default link and focus styles */
a {
  color: var(--accent);
  text-decoration: none;
}

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

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Button and interactive element cursor */
button, .btn, .product-card, .popular-card,
[role="button"], [tabindex] {
  cursor: pointer;
}

/* ============================================
   HOMEPAGE STYLES — v2
   ============================================ */

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.hero { background: var(--bg); border-bottom: 1px solid var(--border); padding: 64px 0 48px; }
.hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; }
.hero h1 { font-size: clamp(32px, 6vw, 52px); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 16px; color: var(--text); }
.hero p { font-size: 18px; color: var(--text-muted); max-width: 480px; line-height: 1.6; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-ghost { font-size: 15px; font-weight: 600; color: var(--text-muted); text-decoration: none; padding: 11px 0; border-bottom: 2px solid var(--border); transition: border-color .15s, color .15s; }
.btn-ghost:hover { color: var(--text); border-color: var(--text); }
.trust-bar { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 24px; font-weight: 800; letter-spacing: -.03em; color: var(--text); }
.trust-item span { font-size: 12px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: .05em; }

/* SECTION HEADERS */
.section-header { margin-bottom: 24px; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); display: block; margin-bottom: 6px; }
.section-header h2 { font-size: 24px; font-weight: 800; letter-spacing: -.03em; color: var(--text); }

.featured-section { padding: 56px 0 0; }
.all-reviews-section { padding: 56px 0 0; }
.categories-section { padding: 56px 0 0; }
.about-strip { padding: 48px 0 64px; }

/* FEATURED GRID — 2 col mobile, 4 col desktop */
.featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media(min-width: 768px) { .featured-grid { grid-template-columns: repeat(4, 1fr); } }

.featured-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); transition: box-shadow .2s; }
.featured-card:hover { box-shadow: var(--shadow-md); }
.featured-card a { text-decoration: none; color: inherit; display: block; }
.featured-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-muted); }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.featured-card:hover .featured-img img { transform: scale(1.04); }
.featured-body { padding: 14px; }
.featured-body h3 { font-size: 14px; font-weight: 700; line-height: 1.4; margin: 6px 0 6px; color: var(--text); }
.featured-body p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.read-more { font-size: 12px; font-weight: 600; color: var(--accent); }

/* REVIEWS GRID — 1 col mobile, 2 col tablet, 3 col desktop */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media(min-width: 560px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); transition: box-shadow .2s; }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card a { text-decoration: none; color: inherit; display: block; }
.review-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-muted); }
.review-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.review-card:hover .review-img img { transform: scale(1.03); }
.review-body { padding: 16px; }
.review-body h3 { font-size: 15px; font-weight: 700; line-height: 1.4; margin: 6px 0 8px; color: var(--text); }
.review-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.review-body time { font-size: 12px; color: var(--text-subtle); }

/* CATEGORY GRID */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media(min-width: 768px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }

.cat-card { border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; display: block; position: relative; aspect-ratio: 3/2; background-image: var(--cat-bg); background-size: cover; background-position: center; }
.cat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
.cat-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.cat-overlay h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cat-overlay p { font-size: 12px; color: rgba(255,255,255,.8); line-height: 1.4; }

/* CATEGORY PILL */
.cat-pill { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--terracotta); background: var(--terracotta-light); padding: 3px 8px; border-radius: 50px; display: inline-block; }

/* ABOUT STRIP */
.about-strip-inner { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.about-icon { font-size: 32px; flex-shrink: 0; }
.about-text { flex: 1; min-width: 200px; }
.about-text strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; }
.about-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* CTA button (shared) */
.btn-primary { background: var(--accent); color: #fff !important; font-size: 15px; font-weight: 600; padding: 12px 24px; border-radius: var(--radius); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: background .15s; }
.btn-primary:hover { background: var(--accent-hover); }
