
.lc-wrap {
  --lc-black: #0e0e0e;
  --lc-off-white: #f5f3ef;
  --lc-warm-grey: #e8e5df;
  --lc-mid-grey: #9a9590;
  --lc-text-secondary: #5a5652;
  --lc-red: #c8372d;
  --lc-red-light: #f9ecea;
  --lc-green: #1a6b3c;
  --lc-green-light: #eaf3ee;
  --lc-navy: #1a2a4a;
  --lc-navy-light: #eaecf5;
  --lc-amber: #9a6010;
  --lc-amber-light: #fdf5e0;
  --lc-border: #d8d4ce;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--lc-black);
  line-height: 1.75;
  background: transparent;
}

.lc-wrap *, .lc-wrap *::before, .lc-wrap *::after { box-sizing: border-box; }
.lc-wrap {
    padding: 2rem !important;
    margin: 0 auto !important; 
    max-width: 800px !important;
}

/* TYPOGRAPHY */
.lc-h1 { font-family: 'Fraunces', serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 20px; }
.lc-h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.8rem); line-height: 1.25; letter-spacing: -0.015em; margin: 56px 0 16px; }
.lc-h3 { font-size: 1.05rem; font-weight: 500; margin: 28px 0 10px; }
.lc-lead { font-size: 1.15rem; line-height: 1.7; color: var(--lc-text-secondary); font-style: italic; font-weight: 300; margin-bottom: 2rem; }
.lc-p { margin-bottom: 1.3rem; font-size: 0.97rem; line-height: 1.75; }
.lc-a { color: var(--lc-red); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.lc-a:hover { border-bottom-color: var(--lc-red); }

/* PAGE HEADER HERO */
.lc-hero { background: #0a0c10; color: #fff; padding: 64px 32px 52px; text-align: center; margin-bottom: 48px; position: relative; overflow: hidden; }
.lc-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 50% 0%, rgba(26,42,74,0.45) 0%, transparent 65%); pointer-events: none; }
.lc-hero-tag { display: inline-block; background: var(--lc-navy); color: #8aa4d4; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 20px; border: 1px solid #2a3a5a; position: relative; }
.lc-hero h1 { font-family: 'Fraunces', serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.15; margin: 0 auto 16px; letter-spacing: -0.02em; position: relative; }
.lc-hero h1 em { font-style: italic; font-weight: 300; color: #8aa4d4; }
.lc-hero p { font-size: 1rem; color: #9a9590; max-width: 580px; margin: 0 auto 28px; font-weight: 300; position: relative; }
.lc-hero-meta { font-size: 0.78rem; color: #666; position: relative; }

/* STAT ROW */
.lc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--lc-border); border: 1px solid var(--lc-border); border-radius: 8px; overflow: hidden; margin: 32px 0; }
.lc-stat { background: var(--lc-off-white); padding: 22px 16px; text-align: center; }
.lc-stat .num { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 700; color: var(--lc-red); line-height: 1; margin-bottom: 6px; display: block; }
.lc-stat .label { font-size: 0.76rem; color: var(--lc-text-secondary); line-height: 1.4; }

/* CARD GRID */
.lc-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 32px 0; }
.lc-card { border: 1px solid var(--lc-border); border-radius: 8px; padding: 22px; background: #fff; position: relative; }
.lc-card.lc-card--rec { border-color: var(--lc-green); }
.lc-card-badge { position: absolute; top: -10px; right: 14px; background: var(--lc-green); color: #fff; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; }
.lc-card-name { font-weight: 500; font-size: 0.94rem; margin-bottom: 4px; }
.lc-card-sub { font-size: 0.75rem; color: var(--lc-mid-grey); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.lc-card-desc { font-size: 0.85rem; color: var(--lc-text-secondary); line-height: 1.6; }

/* PROS / CONS */
.lc-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.lc-pros, .lc-cons { font-size: 0.78rem; }
.lc-pros-label { color: var(--lc-green); font-weight: 500; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.lc-cons-label { color: var(--lc-red); font-weight: 500; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.lc-pros ul, .lc-cons ul { list-style: none; padding: 0; margin: 0; }
.lc-pros li, .lc-cons li { color: var(--lc-text-secondary); margin-bottom: 3px; padding-left: 14px; position: relative; }
.lc-pros li::before { content: '+'; position: absolute; left: 0; color: var(--lc-green); font-weight: 500; }
.lc-cons li::before { content: '-'; position: absolute; left: 0; color: var(--lc-red); font-weight: 500; }

/* CHECKLIST */
.lc-checklist { margin: 28px 0; }
.lc-check-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--lc-border); }
.lc-check-item:last-child { border-bottom: none; }
.lc-check-icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.84rem; margin-top: 2px; }
.lc-icon-must { background: var(--lc-navy-light); color: var(--lc-navy); border: 1px solid #b0bcd4; }
.lc-icon-good { background: var(--lc-green-light); color: var(--lc-green); border: 1px solid #b8d9c5; }
.lc-icon-bad { background: var(--lc-red-light); color: var(--lc-red); border: 1px solid #e8c6c3; }
.lc-check-label { font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; display: block; margin-bottom: 4px; }
.lc-label-must { color: var(--lc-navy); }
.lc-label-good { color: var(--lc-green); }
.lc-label-bad { color: var(--lc-red); }
.lc-check-content h4 { font-size: 0.93rem; font-weight: 500; margin: 0 0 3px; }
.lc-check-content p { font-size: 0.84rem; color: var(--lc-text-secondary); margin: 0; line-height: 1.6; }

/* PRICE BANDS */
.lc-price-bands { margin: 32px 0; }
.lc-band { display: grid; grid-template-columns: 120px 1fr auto; gap: 16px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--lc-border); }
.lc-band:last-child { border-bottom: none; }
.lc-band-price { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; color: var(--lc-black); line-height: 1; }
.lc-band-price small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.71rem; font-weight: 300; color: var(--lc-mid-grey); margin-top: 3px; }
.lc-band-content h4 { font-size: 0.92rem; font-weight: 500; margin: 0 0 4px; }
.lc-band-content p { font-size: 0.84rem; color: var(--lc-text-secondary); margin: 0; line-height: 1.55; }
.lc-verdict { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; white-space: nowrap; margin-top: 2px; }
.lc-verdict-best { background: var(--lc-navy-light); color: var(--lc-navy); }
.lc-verdict-good { background: var(--lc-green-light); color: var(--lc-green); }
.lc-verdict-ok { background: var(--lc-amber-light); color: var(--lc-amber); }
.lc-verdict-avoid { background: var(--lc-red-light); color: var(--lc-red); }

/* ALERTS */
.lc-alert { border-radius: 6px; padding: 18px 22px; margin: 28px 0; display: flex; gap: 14px; align-items: flex-start; }
.lc-alert-danger { background: var(--lc-red-light); border: 1px solid #e8c6c3; }
.lc-alert-success { background: var(--lc-green-light); border: 1px solid #b8d9c5; }
.lc-alert-info { background: var(--lc-navy-light); border: 1px solid #b0bcd4; }
.lc-alert-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.lc-alert p { margin: 0; font-size: 0.91rem; line-height: 1.6; }

/* KEY INSIGHT */
.lc-insight { border: 1px solid var(--lc-black); border-radius: 6px; padding: 22px 26px; margin: 32px 0; position: relative; }
.lc-insight::before { content: 'Key point'; position: absolute; top: -10px; left: 18px; background: #fff; padding: 0 8px; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lc-mid-grey); font-weight: 500; }
.lc-insight p { margin: 0; font-size: 0.94rem; line-height: 1.65; }

/* PRODUCT DARK CARD */
.lc-product-dark { background: var(--lc-black); color: #fff; border-radius: 8px; padding: 30px 34px; margin: 44px 0; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.lc-product-dark .lc-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; margin-bottom: 8px; }
.lc-product-dark h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.35rem; margin: 0 0 8px; color: #fff; }
.lc-product-dark p { margin: 0; font-size: 0.87rem; color: #999; line-height: 1.5; }
.lc-product-dark .lc-price { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 700; color: #fff; white-space: nowrap; text-align: right; }
.lc-product-dark .lc-price small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.7rem; color: #666; font-weight: 300; margin-top: 2px; }

/* BUTTONS */
.lc-btn { display: inline-block; padding: 11px 22px; border-radius: 4px; font-size: 0.84rem; font-weight: 500; text-decoration: none; transition: background 0.2s; margin-top: 14px; border: none; cursor: pointer; }
.lc-btn-primary { background: var(--lc-red); color: #fff !important; }
.lc-btn-primary:hover { background: #a82a21; }
.lc-btn-outline { background: transparent; color: #fff!important; border: 1px solid #444; margin-left: 10px; }
.lc-btn-outline:hover { border-color: #888; }

/* TABLE */
.lc-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.84rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--lc-border); }
.lc-table th { background: var(--lc-black); color: #888; padding: 11px 14px; text-align: left; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.lc-table td { padding: 12px 14px; border-bottom: 1px solid var(--lc-border); vertical-align: top; line-height: 1.55; }
.lc-table tr:last-child td { border-bottom: none; }
.lc-table tr:nth-child(even) td { background: #faf8f5; }
.lc-table td:first-child { font-weight: 500; }

/* FAQ */
.lc-faq { margin: 28px 0; }
.lc-faq-item { border-bottom: 1px solid var(--lc-border); padding: 18px 0; }
.lc-faq-item:last-child { border-bottom: none; }
.lc-faq-q { font-weight: 500; font-size: 0.95rem; margin-bottom: 8px; }
.lc-faq-a { font-size: 0.87rem; color: var(--lc-text-secondary); line-height: 1.65; margin: 0; }

/* BLOCKQUOTE */
.lc-quote { border-left: 3px solid var(--lc-navy); margin: 32px 0; padding: 14px 0 14px 26px; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; font-weight: 300; line-height: 1.5; color: var(--lc-text-secondary); }
.lc-quote cite { display: block; margin-top: 8px; font-size: 0.72rem; font-style: normal; font-family: 'DM Sans', sans-serif; color: var(--lc-mid-grey); letter-spacing: 0.04em; text-transform: uppercase; }

/* RED FLAGS */
.lc-flags { margin: 24px 0; }
.lc-flag-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--lc-border); }
.lc-flag-item:last-child { border-bottom: none; }
.lc-flag-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.lc-flag-item h4 { font-size: 0.92rem; font-weight: 500; margin: 0 0 4px; color: var(--lc-red); }
.lc-flag-item p { font-size: 0.84rem; color: var(--lc-text-secondary); margin: 0; line-height: 1.6; }

/* TOC */
.lc-toc { background: #fff; border: 1px solid var(--lc-border); border-radius: 6px; padding: 22px 26px; margin: 0 0 44px; }
.lc-toc h4 { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lc-mid-grey); margin-bottom: 12px; font-weight: 500; }
.lc-toc ol { padding-left: 18px; margin: 0; columns: 2; gap: 24px; }
.lc-toc li { margin-bottom: 7px; font-size: 0.85rem; color: var(--lc-text-secondary); break-inside: avoid; }
.lc-toc li a { color: var(--lc-text-secondary); text-decoration: none; }
.lc-toc li a:hover { color: var(--lc-red); }

/* DIVIDER */
.lc-divider { width: 44px; height: 2px; background: var(--lc-navy); margin: 56px 0 0; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .lc-card-grid { grid-template-columns: 1fr; }
  .lc-stats { grid-template-columns: 1fr; }
  .lc-band { grid-template-columns: 100px 1fr; }
  .lc-band .lc-verdict { display: none; }
  .lc-product-dark { grid-template-columns: 1fr; }
  .lc-product-dark .lc-price { text-align: left; }
  .lc-pros-cons { grid-template-columns: 1fr; }
  .lc-toc ol { columns: 1; }
  .lc-hero { padding: 44px 20px 36px; }
}