/* ═══════════════════════════════════════════
   MEDITRUST REVIEWS — MAIN STYLESHEET
   Medical Affiliate Site — GitHub Pages Ready
═══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --green: #0B6E4F;
  --green-light: #14A870;
  --green-pale: #E8F5EE;
  --green-mid: #A8D5BE;
  --teal: #0D7E7E;
  --teal-pale: #E6F4F4;
  --amber: #B45309;
  --amber-pale: #FEF3C7;
  --red: #C0392B;
  --red-pale: #FDECEA;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.10);
  --transition: all .2s ease;
  --max-width: 1120px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--gray-600); line-height: 1.75; }
em { font-style: italic; color: var(--green); }
strong { font-weight: 600; color: var(--gray-800); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .75rem 1.6rem; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; font-family: var(--font-body); transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(11,110,79,.3); }
.btn-ghost { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-ghost:hover { background: var(--green-pale); }
.btn-sm { padding: .5rem 1.1rem; font-size: 13px; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar { background: var(--green); color: var(--white); text-align: center; padding: .55rem 1rem; font-size: 13px; font-weight: 500; }
.announcement-bar a { color: #A8D5BE; text-decoration: underline; }
.announcement-bar a:hover { color: var(--white); }

/* ── HEADER ── */
.site-header { background: var(--white); border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 2rem; }

.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--gray-900); flex-shrink: 0; }
.logo strong { color: var(--green); }
.logo-footer { font-size: 1.1rem; }

.main-nav { display: flex; align-items: center; gap: .25rem; }
.nav-link { padding: .5rem .85rem; border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--gray-600); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-pale); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.search-btn { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gray-600); transition: var(--transition); }
.search-btn:hover { background: var(--gray-100); color: var(--green); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 8px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: var(--transition); }

.search-bar { display: none; background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: .75rem 0; }
.search-bar.open { display: block; }
.search-bar .container { display: flex; gap: .5rem; align-items: center; }
.search-input { flex: 1; padding: .6rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 15px; font-family: var(--font-body); outline: none; color: var(--gray-800); }
.search-input:focus { border-color: var(--green); }
.search-close { color: var(--gray-400); font-size: 18px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: var(--transition); }
.search-close:hover { background: var(--gray-200); color: var(--gray-700); }

/* ── HERO ── */
.hero { background: var(--gray-50); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(11,110,79,.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(13,126,126,.05) 0%, transparent 50%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--green-pale); color: var(--green); font-size: 13px; font-weight: 600; padding: .4rem 1rem; border-radius: 20px; margin-bottom: 1.2rem; }
.hero-title { margin-bottom: 1rem; letter-spacing: -.01em; }
.hero-desc { font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; }
.trust-stat { text-align: center; }
.trust-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--green); }
.trust-stat span { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }
.trust-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* Hero Card Stack */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card-stack { position: relative; width: 280px; height: 280px; }
.hcard { background: var(--white); border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); position: absolute; transition: var(--transition); }
.hcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hcard-1 { top: 0; left: 0; right: 0; z-index: 3; }
.hcard-2 { top: 90px; left: 20px; right: -20px; z-index: 2; }
.hcard-3 { top: 180px; left: 10px; right: -10px; z-index: 1; }
.hcard-rating { font-size: 13px; color: var(--amber); font-weight: 600; margin-bottom: .3rem; }
.hcard-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--gray-900); margin-bottom: .5rem; }
.hcard-tag { display: inline-block; background: var(--green-pale); color: var(--green); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }

/* ── SECTION SHARED ── */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 2.5rem; position: relative; }
.section-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.section-title { margin-bottom: .5rem; }
.section-link { font-size: 14px; font-weight: 600; color: var(--green); }
.section-link:hover { text-decoration: underline; }

/* ── CATEGORIES ── */
.categories-section { background: var(--white); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cat-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; transition: var(--transition); display: block; }
.cat-card:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cat-icon { font-size: 2rem; margin-bottom: .8rem; display: block; }
.cat-card h3 { font-size: 1rem; margin-bottom: .3rem; color: var(--gray-900); }
.cat-card p { font-size: 13px; color: var(--gray-400); margin-bottom: .8rem; line-height: 1.5; }
.cat-count { font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-pale); padding: 3px 10px; border-radius: 20px; }
.cat-1:hover { border-color: #0D7E7E; }
.cat-2:hover { border-color: var(--green); }
.cat-3:hover { border-color: var(--amber); }

/* ── REVIEWS ── */
.reviews-section { background: var(--gray-50); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: var(--transition); position: relative; }
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); transform: translateY(-2px); }
.review-featured { grid-column: span 2; display: grid; grid-template-columns: 280px 1fr; }
.review-badge { position: absolute; top: 1rem; left: 1rem; background: var(--green); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; z-index: 2; }
.review-img-placeholder { display: flex; align-items: center; justify-content: center; min-height: 180px; }
.review-img-1 { background: linear-gradient(135deg, #E8F5EE, #A8D5BE); color: var(--green); }
.review-img-2 { background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: var(--amber); min-height: 120px; }
.review-img-3 { background: linear-gradient(135deg, #FDECEA, #FCA5A5); color: var(--red); min-height: 120px; }
.review-img-4 { background: linear-gradient(135deg, #E6F4F4, #99D6D6); color: var(--teal); min-height: 120px; }
.review-body { padding: 1.4rem; }
.review-meta { display: flex; gap: .8rem; align-items: center; margin-bottom: .6rem; }
.review-cat { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .07em; background: var(--green-pale); padding: 3px 9px; border-radius: 20px; }
.review-date { font-size: 12px; color: var(--gray-400); }
.review-title { margin-bottom: .6rem; }
.review-title a { color: var(--gray-900); transition: var(--transition); }
.review-title a:hover { color: var(--green); }
.review-excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.2rem; }
.review-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.review-score { display: flex; align-items: baseline; gap: .1rem; }
.score-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--green); }
.score-label { font-size: 13px; color: var(--gray-400); }
.review-link { font-size: 13px; font-weight: 600; color: var(--green); }
.review-link:hover { text-decoration: underline; }

/* ── METHODOLOGY ── */
.methodology-section { background: var(--white); }
.methodology-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.methodology-text p { margin-bottom: 2rem; }
.method-steps { display: flex; flex-direction: column; gap: 1.4rem; }
.method-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--green-mid); line-height: 1; flex-shrink: 0; width: 48px; }
.step-content h4 { margin-bottom: .2rem; color: var(--gray-900); }
.step-content p { font-size: 14px; }

.score-breakdown-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.8rem; }
.sbc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 1.5rem; }
.score-criterion { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.sc-label { font-size: 13px; color: var(--gray-600); flex: 0 0 130px; }
.sc-bar { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.sc-fill { height: 100%; background: var(--green); border-radius: 3px; }
.sc-pct { font-size: 12px; font-weight: 600; color: var(--green); flex: 0 0 32px; text-align: right; }

/* ── BLOG ── */
.blog-section { background: var(--gray-50); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-featured { grid-column: span 2; display: grid; grid-template-columns: 320px 1fr; }
.blog-img { min-height: 200px; }
.blog-img-1 { background: linear-gradient(135deg, var(--green) 0%, #14A870 100%); }
.blog-body { padding: 1.5rem; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .07em; display: block; margin-bottom: .6rem; }
.blog-body h3 { margin-bottom: .6rem; }
.blog-body h3 a { color: var(--gray-900); transition: var(--transition); }
.blog-body h3 a:hover { color: var(--green); }
.blog-body p { font-size: 14px; margin-bottom: 1rem; }
.blog-meta { display: flex; gap: .4rem; font-size: 12px; color: var(--gray-400); }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--white); padding: 4rem 0; }
.newsletter-box { background: var(--green); border-radius: var(--radius-lg); padding: 3.5rem; text-align: center; max-width: 600px; margin: 0 auto; }
.nl-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter-box h2 { color: var(--white); margin-bottom: .6rem; }
.newsletter-box > p { color: rgba(255,255,255,.8); margin-bottom: 1.8rem; }
.nl-form { display: flex; gap: .6rem; max-width: 420px; margin: 0 auto 1rem; }
.nl-input { flex: 1; padding: .75rem 1rem; border: none; border-radius: var(--radius-sm); font-size: 15px; font-family: var(--font-body); outline: none; }
.nl-input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.newsletter-box .btn-primary { background: var(--gray-900); }
.newsletter-box .btn-primary:hover { background: var(--gray-800); }
.nl-disclaimer { font-size: 12px; color: rgba(255,255,255,.6); }
.nl-disclaimer a { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ── FOOTER ── */
.site-footer { background: var(--gray-900); color: var(--gray-400); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand .logo strong { color: var(--green-mid); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 1.2rem; color: var(--gray-400); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--gray-400); transition: var(--transition); font-weight: 700; }
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-400); padding: .25rem 0; transition: var(--transition); }
.footer-col a:hover { color: var(--green-mid); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom .container > p { font-size: 12px; color: var(--gray-600); margin-bottom: .5rem; line-height: 1.6; }
.footer-bottom strong { color: var(--gray-400); }
.footer-bottom a { color: var(--gray-400); text-decoration: underline; }
.affiliate-note, .medical-note { background: rgba(255,255,255,.04); border-left: 3px solid rgba(255,255,255,.1); padding: .6rem .9rem; border-radius: 0 4px 4px 0; margin-bottom: .5rem !important; }

/* ── REVIEW PAGE SPECIFIC ── */
.review-page-hero { background: var(--gray-50); padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--gray-200); }
.breadcrumb { display: flex; gap: .4rem; font-size: 13px; color: var(--gray-400); margin-bottom: 1.2rem; align-items: center; }
.breadcrumb a { color: var(--green); }
.breadcrumb span { color: var(--gray-300); }
.review-hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.review-hero-meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; align-items: center; }
.rh-tag { font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-pale); padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; }
.rh-date { font-size: 13px; color: var(--gray-400); }
.review-hero-title { margin-bottom: .8rem; }
.review-hero-summary { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; }

.verdict-box { background: var(--white); border: 1.5px solid var(--green); border-radius: var(--radius); padding: 1.5rem; }
.verdict-score-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--gray-100); }
.verdict-score-big { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--green); line-height: 1; }
.verdict-score-label { font-size: 13px; color: var(--gray-400); }
.verdict-label { background: var(--green); color: var(--white); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: .07em; }
.verdict-criteria { margin-bottom: 1.2rem; }
.vc-row { display: flex; align-items: center; gap: .7rem; margin-bottom: .6rem; font-size: 13px; }
.vc-name { flex: 0 0 120px; color: var(--gray-600); }
.vc-bar-wrap { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.vc-bar { height: 100%; border-radius: 3px; background: var(--green); }
.vc-num { flex: 0 0 30px; text-align: right; font-weight: 600; color: var(--green); }
.verdict-cta { display: block; text-align: center; background: var(--green); color: var(--white); padding: .85rem 1rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; margin-bottom: .5rem; transition: var(--transition); }
.verdict-cta:hover { background: var(--green-light); transform: translateY(-1px); }
.verdict-cta-note { font-size: 12px; color: var(--gray-400); text-align: center; }

/* Review Content */
.review-content-grid { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; margin: 3rem 0; }
.review-article { max-width: none; }
.review-article h2 { font-size: 1.6rem; margin: 2.5rem 0 .8rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); }
.review-article h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.review-article h3 { font-size: 1.15rem; margin: 1.5rem 0 .5rem; }
.review-article p { margin-bottom: 1rem; }
.review-article ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.review-article ul li { color: var(--gray-600); font-size: 15px; padding: .2rem 0; }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.pros-box, .cons-box { border-radius: var(--radius); padding: 1.2rem; }
.pros-box { background: var(--green-pale); border: 1px solid var(--green-mid); }
.cons-box { background: var(--red-pale); border: 1px solid #FCA5A5; }
.pros-box h4 { color: var(--green); margin-bottom: .8rem; }
.cons-box h4 { color: var(--red); margin-bottom: .8rem; }
.pros-box ul li, .cons-box ul li { font-size: 14px; padding: .25rem 0; list-style: none; padding-left: 1.2rem; position: relative; }
.pros-box ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-box ul li::before { content: "✗"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.review-sidebar { position: sticky; top: 80px; }
.sidebar-cta-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.2rem; margin-bottom: 1.2rem; }
.sidebar-cta-box h4 { margin-bottom: .6rem; }
.sidebar-cta-box p { font-size: 13px; margin-bottom: 1rem; }

/* ── BLOG PAGE ── */
.blog-hero { background: var(--gray-900); padding: 4rem 0; text-align: center; }
.blog-hero h1 { color: var(--white); margin-bottom: .6rem; }
.blog-hero p { color: var(--gray-400); max-width: 520px; margin: 0 auto; }
.blog-listing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin: 3rem 0; }
.blog-listing-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-listing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blc-img { height: 160px; }
.blc-img-1 { background: linear-gradient(135deg, #E8F5EE, #A8D5BE); }
.blc-img-2 { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.blc-img-3 { background: linear-gradient(135deg, #E6F4F4, #99D6D6); }
.blc-img-4 { background: linear-gradient(135deg, #FDECEA, #FCA5A5); }
.blc-body { padding: 1.2rem; }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--green); padding: 5rem 0; text-align: center; }
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,.8); max-width: 520px; margin: 1rem auto 0; font-size: 1.05rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.team-avatar-1 { background: var(--green-pale); }
.team-avatar-2 { background: var(--teal-pale); }
.team-avatar-3 { background: var(--amber-pale); }
.team-card h3 { font-size: 1rem; margin-bottom: .2rem; }
.team-card .role { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: .5rem; }
.team-card p { font-size: 13px; }

/* ── CATEGORIES PAGE ── */
.categories-hero { background: var(--gray-900); padding: 3.5rem 0; }
.categories-hero h1 { color: var(--white); }
.categories-hero p { color: var(--gray-400); margin-top: .5rem; }
.category-section { padding: 3rem 0; border-bottom: 1px solid var(--gray-100); }
.category-section:last-child { border-bottom: none; }
.cat-section-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.cat-section-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.products-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.products-table th { text-align: left; padding: .7rem 1rem; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); }
.products-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.products-table tr:hover td { background: var(--gray-50); }
.pt-name { font-weight: 600; color: var(--gray-900); }
.pt-name a { color: var(--green); }
.pt-score { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--green); }
.pt-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; }
.badge-best { background: var(--green); color: var(--white); }
.badge-value { background: var(--amber-pale); color: var(--amber); }
.badge-new { background: var(--teal-pale); color: var(--teal); }

/* ── PAGES ── */
.simple-page { max-width: 720px; margin: 4rem auto; padding: 0 1.5rem 4rem; }
.simple-page h1 { margin-bottom: 1.5rem; }
.simple-page h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
.simple-page p { margin-bottom: 1rem; }
.simple-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.simple-page ul li { color: var(--gray-600); padding: .2rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .review-featured { grid-column: span 1; display: block; }
  .reviews-grid { grid-template-columns: 1fr; }
  .methodology-inner { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: span 1; display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .review-hero-grid { grid-template-columns: 1fr; }
  .review-content-grid { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .blog-listing-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .main-nav { display: none; position: fixed; inset: 64px 0 0 0; background: var(--white); flex-direction: column; gap: 0; padding: 1rem; z-index: 200; border-top: 1px solid var(--gray-200); overflow-y: auto; }
  .main-nav.open { display: flex; }
  .nav-link { padding: .9rem 1rem; font-size: 16px; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }
  .categories-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 1rem; }
  .newsletter-box { padding: 2rem 1.2rem; }
  .footer-nav { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
