/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:       #1A9E6A;
  --green-dark:  #137A52;
  --green-light: #F0FFF8;
  --green-border:rgba(26,158,106,0.25);
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-900: #111827;
  --radius:    12px;
  --max:       860px;
  --max-wide:  1000px;
}
body { font-family: 'Inter', sans-serif; background: #fff; color: var(--gray-900); -webkit-font-smoothing: antialiased; line-height: 1.6; }

/* ── NAV ── */
.site-nav { border-bottom: 1px solid var(--gray-200); background: #fff; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--max-wide); margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo-icon { width: 28px; height: 28px; background: var(--green); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: #fff; font-family: 'Inter', sans-serif; flex-shrink: 0; }
.nav-logo-text { font-size: 15px; font-weight: 800; color: var(--gray-900); letter-spacing: -0.3px; }
.nav-logo-text em { color: var(--green); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-600); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--gray-900); }
.nav-cta { background: var(--green) !important; color: #fff !important; font-weight: 600 !important; padding: 8px 18px; border-radius: 20px; font-size: 13px !important; }
.nav-cta:hover { background: var(--green-dark) !important; }

/* ── BUTTONS ── */
.btn { display: inline-block; background: var(--green); color: #fff; font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 20px; text-decoration: none; white-space: nowrap; transition: background 0.15s; letter-spacing: -0.1px; }
.btn:hover { background: var(--green-dark); }
.btn-sm { padding: 7px 16px; font-size: 12px; }

/* ── MOBILE STATS (hidden on desktop) ── */
.mobile-stats { display: none; }

/* ── CHECK ICON ── */
.chk { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: var(--green-light); border: 1px solid var(--green-border); align-items: center; justify-content: center; flex-shrink: 0; }
.chk svg { width: 10px; height: 10px; }

/* ── PAGE WRAPPER ── */
.page { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.page-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 24px; }

/* ── HERO ── */
.hero { padding: 60px 0 44px; text-align: center; }
.hero h1 { font-family: 'Merriweather', serif; font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1.22; margin-bottom: 12px; letter-spacing: -0.4px; }
.hero p { font-size: 15px; color: var(--gray-600); line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* ── COMPARISON LIST ── */
.col-head { display: grid; grid-template-columns: 1fr 90px 110px 90px 90px 160px; padding: 0 20px 8px; }
.col-head span { font-size: 11px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.8px; text-align: center; }
.col-head span:first-child { text-align: left; }
.cmp-list { display: flex; flex-direction: column; gap: 14px; padding-bottom: 72px; }
.cmp-row { display: grid; grid-template-columns: 1fr 90px 110px 90px 90px 160px; align-items: center; padding: 18px 20px; border: 1px solid var(--gray-200); border-radius: var(--radius); background: #fff; position: relative; transition: box-shadow 0.15s; }
.cmp-row:hover { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.cmp-row.best { border: 2px solid var(--green); background: var(--green-light); }
.best-pill { position: absolute; top: -12px; left: 20px; background: var(--green); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.platform { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand-icon { width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; }
.ic-un { background: #1852E5; }
.ic-sa { background: #20C4AB; }
.ic-ko { background: #1B2332; font-size: 18px; }
.p-name { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; white-space: nowrap; }
.p-tag { font-size: 12px; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stat { text-align: center; font-size: 14px; font-weight: 600; color: var(--gray-900); display: flex; align-items: center; justify-content: center; }
.row-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.link-review { font-size: 12px; font-weight: 600; color: var(--green); text-decoration: none; white-space: nowrap; }
.link-review:hover { text-decoration: underline; }

/* ── REVIEW GRID (reviews page) ── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 80px; }
.review-card { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow 0.15s; }
.review-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.review-card-thumb { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 900; color: #fff; }
.rc-un { background: linear-gradient(135deg, #1852E5, #3B82F6); }
.rc-sa { background: linear-gradient(135deg, #20C4AB, #059669); }
.rc-ko { background: linear-gradient(135deg, #1B2332, #374151); }
.review-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.rc-meta { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.rc-title { font-size: 16px; font-weight: 700; color: var(--gray-900); line-height: 1.3; margin-bottom: 8px; }
.rc-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.65; flex: 1; }
.rc-footer { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.rc-rating { font-size: 12px; font-weight: 700; color: var(--green); }
.rc-link { font-size: 12px; font-weight: 600; color: var(--green); }

/* ── REVIEW PAGE ── */
.review-page { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.review-breadcrumb { font-size: 13px; color: var(--gray-400); padding: 20px 0 0; }
.review-breadcrumb a { color: var(--gray-400); text-decoration: none; }
.review-breadcrumb a:hover { color: var(--green); }
.review-hero { padding: 28px 0 24px; }
.review-label { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.review-hero h1 { font-family: 'Merriweather', serif; font-size: clamp(22px, 4vw, 32px); font-weight: 700; line-height: 1.22; letter-spacing: -0.4px; margin-bottom: 12px; }
.review-meta { display: flex; align-items: center; gap: 20px; font-size: 13px; color: var(--gray-400); padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.verdict-box { background: var(--green-light); border: 1px solid var(--green-border); border-radius: 10px; padding: 18px 20px; margin: 24px 0; display: flex; gap: 14px; align-items: flex-start; }
.verdict-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.verdict-label { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.verdict-text { font-size: 14px; color: #166534; line-height: 1.65; }
.quick-facts { border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; margin: 24px 0; }
.qf-title { background: var(--gray-50); padding: 12px 20px; font-size: 12px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--gray-200); }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; padding: 11px 20px; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.qf-row:last-child { border-bottom: none; }
.qf-label { color: var(--gray-600); font-weight: 500; }
.qf-val { font-weight: 700; color: var(--gray-900); text-align: right; }
.qf-val.green { color: var(--green); }
.review-content h2 { font-family: 'Merriweather', serif; font-size: 20px; font-weight: 700; color: var(--gray-900); margin: 32px 0 12px; }
.review-content p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.review-content ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.review-content ul li { font-size: 15px; color: var(--gray-600); line-height: 1.7; display: flex; align-items: flex-start; gap: 10px; }
.pro-con { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 28px; }
.pro-box, .con-box { border-radius: 10px; padding: 16px 18px; }
.pro-box { background: var(--green-light); border: 1px solid var(--green-border); }
.con-box { background: #FFF7F0; border: 1px solid rgba(249,115,22,0.25); }
.pro-con-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.pro-box .pro-con-title { color: var(--green); }
.con-box .pro-con-title { color: #C2410C; }
.pro-con ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.pro-con ul li { font-size: 13px; line-height: 1.6; display: flex; gap: 8px; align-items: flex-start; }
.pro-box ul li::before { content: "+"; color: var(--green); font-weight: 800; flex-shrink: 0; }
.con-box ul li::before { content: "−"; color: #C2410C; font-weight: 800; flex-shrink: 0; }
.review-cta { background: var(--gray-900); border-radius: var(--radius); padding: 28px 32px; margin: 32px 0; text-align: center; }
.review-cta h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.review-cta p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.doi-box { display: flex; gap: 10px; align-items: flex-start; background: #FFFBEB; border: 1px solid #FCD34D; border-radius: 8px; padding: 12px 16px; margin: 16px 0; }
.doi-box span { font-size: 13px; color: #92400E; line-height: 1.6; }
.doi-box strong { font-weight: 700; }
.related-reviews { padding: 32px 0 60px; }
.related-reviews h2 { font-family: 'Merriweather', serif; font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ── ABOUT / SIMPLE PAGE ── */
.simple-page { max-width: 680px; margin: 0 auto; padding: 48px 24px 80px; }
.simple-page h1 { font-family: 'Merriweather', serif; font-size: 28px; font-weight: 700; margin-bottom: 24px; }
.simple-page h2 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin: 28px 0 10px; }
.simple-page p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.simple-page ul { padding-left: 20px; margin-bottom: 14px; }
.simple-page ul li { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 6px; }

/* ── FOOTER ── */
.site-footer { background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: 32px 24px; text-align: center; }
.footer-inner { max-width: var(--max-wide); margin: 0 auto; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-icon { width: 24px; height: 24px; background: var(--green); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; }
.footer-logo-text { font-size: 14px; font-weight: 800; color: var(--gray-900); }
.footer-logo-text em { color: var(--green); font-style: normal; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 14px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--gray-600); text-decoration: none; }
.footer-links a:hover { color: var(--gray-900); }
.footer-disc { font-size: 12px; color: var(--gray-400); line-height: 1.8; max-width: 720px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {

  /* Nav — hide text links, keep CTA */
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { font-size: 12px !important; padding: 7px 14px !important; }

  /* Hero */
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: clamp(22px, 6vw, 28px); }
  .hero p { font-size: 14px; }

  /* Page padding */
  .page-wide { padding: 0 16px; }
  .page { padding: 0 16px; }

  /* Comparison list — stack vertically */
  .col-head { display: none; }
  .cmp-list { gap: 20px; padding-bottom: 48px; }
  .cmp-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 16px 16px;
  }
  .platform { gap: 12px; }
  .p-name { font-size: 15px; }
  .p-tag { white-space: normal; font-size: 12px; }

  /* Stats row — show as inline pills on mobile */
  .stat { display: none; }
  .mobile-stats { display: flex; gap: 8px; flex-wrap: wrap; margin: 4px 0 2px; }
  .mobile-stat { font-size: 11px; font-weight: 600; color: var(--gray-600); background: var(--gray-100); border-radius: 20px; padding: 3px 10px; }

  /* Actions — full width stacked */
  .row-actions {
    align-items: stretch;
    gap: 10px;
  }
  .row-actions .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    font-size: 14px;
    border-radius: 10px;
  }
  .link-review {
    text-align: center;
    display: block;
    padding: 4px 0;
    font-size: 13px;
  }

  /* Confirm email note */
  .row-actions span[style] {
    text-align: center !important;
    font-size: 12px !important;
  }

  /* Best pill */
  .best-pill { font-size: 10px; top: -11px; left: 16px; }

  /* Reviews grid */
  .review-grid { grid-template-columns: 1fr; gap: 16px; padding-bottom: 48px; }

  /* Review page */
  .review-page { padding: 0 16px; }
  .review-hero h1 { font-size: clamp(20px, 5.5vw, 28px); }
  .review-meta { flex-wrap: wrap; gap: 8px; font-size: 12px; }
  .quick-facts .qf-row { grid-template-columns: 1fr 1fr; gap: 4px; font-size: 13px; padding: 10px 16px; }
  .qf-title { padding: 10px 16px; }
  .pro-con { grid-template-columns: 1fr; gap: 12px; }
  .related-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-cta { padding: 24px 20px; }
  .review-cta h3 { font-size: 18px; }
  .review-content h2 { font-size: 18px; margin: 24px 0 10px; }
  .review-content p { font-size: 14px; }
  .review-content ul li { font-size: 14px; }

  /* Simple pages */
  .simple-page { padding: 32px 16px 60px; }
  .simple-page h1 { font-size: 24px; }
  .simple-page h2 { font-size: 16px; }
  .simple-page p { font-size: 14px; }

  /* Footer */
  .site-footer { padding: 24px 16px; }
  .footer-links { gap: 16px; }
  .footer-disc { font-size: 11px; }
}
