:root {
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --secondary: #E2E8F0;
  --text: #1F2937;
  --muted: #64748B;
  --success: #059669;
  --success-bg: #ECFDF5;
  --danger: #DC2626;
  --danger-bg: #FEF2F2;
  --warning: #B45309;
  --warning-bg: #FFFBEB;
  --tint: #EAF1FF;      /* light blue - between primary and white */
  --tint2: #F4F8FF;     /* fainter blue */
  --page: #F6F9FF;      /* whole-page wash */
  --radius: 12px;
  --shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-hover: 0 8px 24px rgba(37, 99, 235, .10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { font-size: 18px; -webkit-text-size-adjust: 100%; }   /* larger base */
body {
  margin: 0; font-family: var(--font); color: var(--text); background: var(--page);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { letter-spacing: -.015em; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, .92); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--secondary);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; background: var(--primary); color: #fff; font-weight: 800; }
.brand-accent { color: var(--primary); }
.site-nav a { color: var(--muted); font-size: 1rem; margin-left: 18px; padding: 7px 14px; border-radius: 999px; }
.site-nav a.active { color: var(--text); font-weight: 600; background: var(--tint); box-shadow: 0 0 0 1px #C7D9F5; text-decoration: none; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--tint); border-bottom: 1px solid #C7D9F5; }
.trust-inner { display: flex; flex-wrap: wrap; gap: 8px 28px; padding: 11px 22px; font-size: .9rem; color: var(--muted); }
.trust-inner strong { color: var(--text); }

/* ---------- hero ---------- */
.hero { padding: 40px 0 30px; max-width: 760px; }
.hero .tagline { margin: 0 0 14px; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--primary); }
.hero h1 { font-size: 2.05rem; line-height: 1.14; margin: 0 0 14px; }
.hero .sub { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ---------- section heads ---------- */
.section-head { font-size: 1.4rem; margin: 40px 0 6px; padding-left: 12px; border-left: 4px solid var(--primary); }
.section-hint { color: var(--muted); margin: 0 0 18px; font-size: 1rem; }

/* ---------- exam grid (home) ---------- */
.exam-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.exam-card {
  text-align: left; font: inherit; cursor: pointer; background: #fff;
  border: 1.5px solid var(--secondary); border-radius: var(--radius); padding: 16px 18px;
  transition: all .13s ease;
}
.exam-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); }
.exam-card[aria-pressed="true"] { border-color: var(--primary); background: #EFF6FF; }
.exam-card .ex-name { font-weight: 700; font-size: 1.1rem; }
.exam-card .ex-meta { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.exam-card.soon { cursor: not-allowed; opacity: .7; }
.exam-card.soon:hover { border-color: var(--secondary); box-shadow: none; }
.soon-tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: var(--surface); border: 1px solid var(--secondary); border-radius: 6px; padding: 2px 7px; margin-top: 6px; }
.exam-card .ex-count { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: var(--surface); border: 1px solid var(--secondary); border-radius: 6px; padding: 2px 7px; margin-top: 8px; }
.exam-card .ex-count.analyzed { color: var(--success); background: var(--success-bg); border-color: #A7F3D0; }

/* ---------- institute list (home) ---------- */
.inst-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 120px; }
.inst-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; border: 1px solid var(--secondary); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow);
}
.inst-row .inst-main { min-width: 0; }
.inst-row h3 { margin: 0 0 3px; font-size: 1.2rem; }
.inst-row .inst-meta { color: var(--muted); font-size: .92rem; }
.inst-row .inst-fee { color: var(--text); font-weight: 600; }
.inst-row .inst-star { color: var(--text); font-weight: 700; }
.add-btn {
  flex: none; font: inherit; font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 1.5px solid var(--primary); color: var(--primary); background: #fff;
  border-radius: 9px; padding: 9px 18px; transition: all .12s ease;
}
.add-btn:hover { background: #EFF6FF; }
.add-btn[aria-pressed="true"] { background: var(--primary); color: #fff; }
.add-btn.ghost { border-color: var(--secondary); color: var(--muted); }
.add-btn.ghost:hover { background: var(--surface); }
.add-btn.ghost[aria-pressed="true"] { background: var(--muted); border-color: var(--muted); color: #fff; }

/* directory-only (not yet analyzed) institute row */
.inst-row.unanalyzed { background: var(--surface); border-style: dashed; box-shadow: none; }
.inst-row.unanalyzed h3 { color: var(--muted); font-weight: 600; }
.inst-tag { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: #fff; border: 1px solid var(--secondary); border-radius: 5px; padding: 1px 7px; vertical-align: middle; margin-left: 6px; }

/* ---------- compare bar (home, fixed) ---------- */
.compare-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: #fff; border-top: 1px solid var(--secondary);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, .06);
  transform: translateY(110%); transition: transform .2s ease;
}
.compare-bar.show { transform: translateY(0); }
.compare-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 22px; }
.compare-bar .cb-text { font-size: 1rem; color: var(--muted); }
.compare-bar .cb-text strong { color: var(--text); }
.btn-primary {
  font: inherit; font-weight: 600; font-size: 1rem; cursor: pointer; border: none;
  background: var(--primary); color: #fff; border-radius: 10px; padding: 11px 22px; text-decoration: none;
}
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-primary:disabled { background: var(--secondary); color: var(--muted); cursor: not-allowed; }

/* ---------- compare page top ---------- */
.back-link { display: inline-block; margin: 22px 0 4px; color: var(--muted); font-size: .96rem; }
/* same look as .back-link but it's a real <button> (no navigation, just step 2 -> 1) */
.back-btn { font: inherit; background: none; border: none; padding: 0; cursor: pointer; margin: 34px 0 0; }
.back-btn:hover { color: var(--primary); text-decoration: underline; }

/* contact page CTAs */
.contact-btn { display: inline-block; margin-top: 6px; }

/* contact page — direct email/phone block */
.contact-direct { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0 8px; }
.contact-direct .cd-item {
  flex: 1 1 240px; background: var(--surface); border: 1px solid var(--secondary);
  border-radius: var(--radius); padding: 14px 18px;
}
.contact-direct .cd-label {
  display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--muted); margin-bottom: 4px;
}
.contact-direct .cd-item a { font-size: 1.12rem; font-weight: 600; word-break: break-word; }
.compare-title { font-size: 1.8rem; margin: 6px 0 20px; }

/* ---------- comparison grid ---------- */
.comparison { display: grid; gap: 20px; padding-bottom: 60px; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card { background: var(--bg); border: 1px solid var(--secondary); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s ease, transform .15s ease; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-head { padding: 20px 22px 15px; border-bottom: 1px solid var(--secondary); background: linear-gradient(180deg, var(--tint2), var(--bg)); }
.card-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-title h2 { margin: 0; font-size: 1.35rem; }
.rating { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 1.02rem; }
.rating .star { color: #F59E0B; }
.card-sub { margin: 7px 0 0; font-size: .92rem; color: var(--muted); }
.card-sub a { color: var(--muted); text-decoration: underline; }
.card-body { padding: 18px 22px; display: flex; flex-direction: column; gap: 20px; flex: 1; }

/* in-card tabs */
.tabs { display: flex; gap: 4px; padding: 0 14px; border-bottom: 1px solid var(--secondary); background: #fff; }
.tab { font: inherit; font-weight: 600; font-size: .96rem; color: var(--muted); background: none; border: none; cursor: pointer; padding: 12px 12px; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab:hover { color: var(--text); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.panel.hidden { display: none; }
.panel { display: flex; flex-direction: column; gap: 20px; }

/* package tiers */
.pkg-list { display: flex; flex-direction: column; gap: 14px; }
.pkg-tier { border: 1px solid var(--secondary); border-radius: 10px; padding: 14px 16px; }
.pkg-tier-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.pkg-name { font-weight: 700; font-size: 1.06rem; }
.pkg-price { font-weight: 800; color: var(--primary); white-space: nowrap; }
.pkg-tier-note { color: var(--muted); font-size: .88rem; margin-top: 3px; }
.pkg-incl { list-style: none; padding: 0; margin: 11px 0 0; display: flex; flex-direction: column; gap: 7px; }
.pkg-incl li { font-size: .94rem; padding-left: 22px; position: relative; }
.pkg-incl li::before { content: "✓"; color: var(--success); position: absolute; left: 0; font-weight: 800; }
.pkg-none { color: var(--muted); font-size: .9rem; font-style: italic; margin: 9px 0 0; }
.pkg-badge { display: inline-block; margin-top: 11px; font-size: .74rem; font-weight: 700; padding: 3px 9px; border-radius: 6px; }
.pkg-badge.ok { background: var(--success-bg); color: var(--success); }
.pkg-badge.unk { background: var(--warning-bg); color: var(--warning); }
.pkg-source { color: var(--muted); font-size: .82rem; margin: 2px 2px 0; }
.pkg-empty .pkg-note { color: var(--muted); font-size: .96rem; }
.pkg-reported { margin-bottom: 12px; }
.pkg-reported .fee-amount { font-size: 1.5rem; font-weight: 800; }

/* fees */
.fees .fee-amount { font-size: 1.65rem; font-weight: 800; letter-spacing: -.02em; }
.fees .fee-plans { color: var(--muted); font-size: .92rem; margin-top: 3px; }
.fee-tag { display: inline-block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 3px 9px; border-radius: 6px; margin-bottom: 9px; }
.fee-tag.official { background: var(--success-bg); color: var(--success); }
.fee-tag.reported { background: var(--warning-bg); color: var(--warning); }
.feature-list { list-style: none; padding: 0; margin: 11px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.feature-list li { font-size: .84rem; background: var(--surface); border: 1px solid var(--secondary); border-radius: 6px; padding: 4px 9px; color: var(--muted); }
.section-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 0 0 9px; }

/* verdict / pros / cons */
.verdict { background: var(--tint); border-left: 3px solid var(--primary); border-radius: 0 8px 8px 0; padding: 13px 15px; font-size: 1rem; }
.pc { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pc li { display: flex; gap: 10px; font-size: .98rem; }
.pc .ic { flex: none; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: .74rem; font-weight: 900; margin-top: 1px; }
.pros .ic { background: var(--success-bg); color: var(--success); }
.cons .ic { background: var(--danger-bg); color: var(--danger); }
.pc .txt { flex: 1; }
.pc .txt .q { font-style: italic; }
.cite { margin-left: 6px; white-space: nowrap; }
.cite a { font-size: .78rem; color: var(--muted); border: 1px solid var(--secondary); border-radius: 5px; padding: 1px 6px; text-decoration: none; }
.cite a:hover { border-color: var(--primary); color: var(--primary); }
/* positives | negatives side by side, each in its own box (white fill, coloured
   heading + border). minmax(0,1fr) lets the columns shrink so text never leaks. */
.pc-columns { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; align-items: start; }
.pc-columns .pc-block { min-width: 0; border: 1px solid var(--secondary); border-radius: 12px; padding: 12px 12px 14px; background: var(--bg); overflow-wrap: break-word; word-break: break-word; }
.pc-block.pros { border-color: #A7F3D0; }
.pc-block.cons { border-color: #FECACA; }
.pc-block.pros .section-label { color: var(--success); }
.pc-block.cons .section-label { color: var(--danger); }
.pc-block .txt, .pc-block .rv-text, .pc-block .q { overflow-wrap: break-word; word-break: break-word; }
@media (max-width: 560px) { .pc-columns { grid-template-columns: 1fr; } }

/* inline prioritised reviews under each positives/negatives block */
.pc-block { margin-bottom: 4px; }
.rv-count { font-size: .82rem; color: var(--muted); margin: 12px 0 8px; }
.rv-count strong { color: var(--text); }
.rv-inline { display: flex; flex-direction: column; gap: 10px; }

/* "see more" -> the real reviews behind the summary */
.see-more {
  font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
  color: var(--primary); background: none; border: none; padding: 8px 0 0; margin-top: 2px;
}
.see-more:hover { text-decoration: underline; }
.review-list { margin-top: 10px; }
.rv-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.rv { border: 1px solid var(--secondary); border-radius: 9px; padding: 11px 13px; background: #fff; display: flex; flex-direction: column; }
.rv-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 5px; }
.rv-stars { letter-spacing: .5px; font-size: .84rem; }
.rv-stars.pos { color: var(--success); }
.rv-stars.neg { color: var(--danger); }
.rv-src-badge { font-size: .76rem; font-weight: 700; color: var(--primary-dark); background: #EFF6FF; border-radius: 6px; padding: 2px 8px; }
/* bolded key phrases / faculty names inside reviews — no highlighter, just weight */
.rv-text strong, .pc .txt strong { font-weight: 700; color: var(--text); }
.rv-meta { font-size: .78rem; color: var(--muted); }
.rv-head a { font-size: .76rem; color: var(--muted); text-decoration: underline; margin-left: auto; }
.rv-text { margin: 0; font-size: .9rem; line-height: 1.55; }
.rv-text.clamp { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; overflow: hidden; }
.rv-expand { align-self: flex-start; margin-top: 4px; font: inherit; line-height: 1; letter-spacing: 1px; cursor: pointer; background: none; border: none; color: var(--primary); padding: 2px 6px; border-radius: 6px; }
.rv-expand:hover { background: #EFF6FF; }
.rv-expand[hidden] { display: none; }
.rv-foot { font-size: .78rem; color: var(--muted); margin: 9px 2px 0; }
.rv-error { color: var(--danger); }

.not-covered { font-size: .9rem; color: var(--muted); }
.not-covered span { display: inline-block; background: var(--surface); border: 1px dashed var(--secondary); border-radius: 6px; padding: 3px 8px; margin: 3px 4px 0 0; }

/* trust footer of card */
.card-foot { border-top: 1px solid var(--secondary); padding: 15px 22px; background: var(--surface); display: flex; flex-direction: column; gap: 10px; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; }
.badge { font-size: .8rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.badge.sources { background: #EFF6FF; color: var(--primary-dark); }
.badge.planted { background: var(--warning-bg); color: var(--warning); }
.source-breakdown { font-size: .84rem; color: var(--muted); }
.rating-prov { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.rating-prov a { color: var(--muted); text-decoration: underline; }
.scope-note { font-size: .8rem; color: var(--muted); background: #fff; border: 1px dashed var(--secondary); border-radius: 8px; padding: 7px 10px; line-height: 1.45; }
.distrust { font-size: .86rem; color: var(--warning); background: var(--warning-bg); border-radius: 8px; padding: 9px 11px; }
.distrust a { color: var(--warning); text-decoration: underline; }

/* un-analyzed comparison card */
.card-unanalyzed { border-style: dashed; background: var(--surface); }
.card-unanalyzed .card-head { border-bottom-color: var(--secondary); }
.card-unanalyzed .card-title { align-items: center; }
.tag-unanalyzed { flex: none; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: #fff; border: 1px solid var(--secondary); border-radius: 6px; padding: 2px 8px; }
.unanalyzed-note { color: var(--muted); font-size: .96rem; }
.unanalyzed-note p { margin: 0 0 10px; }
.unanalyzed-note p:last-child { margin-bottom: 0; }
.unanalyzed-note strong { color: var(--text); }

/* ---------- about page ---------- */
.page-narrow { max-width: 760px; }
.about-h1 { font-size: 2.2rem; margin: 40px 0 8px; }
.about-lead { font-size: 1.18rem; color: var(--muted); margin: 0 0 10px; }
.about-section { margin: 34px 0; }
.about-section h2 { font-size: 1.35rem; margin: 0 0 10px; }
.about-section p { margin: 0 0 12px; }
.rev-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 12px; }
.rev-list li { border: 1px solid var(--secondary); border-left: 3px solid var(--primary); border-radius: 0 10px 10px 0; padding: 13px 16px; background: var(--surface); }
.rev-list .rev-name { font-weight: 700; }
.rev-list .rev-desc { color: var(--muted); font-size: .96rem; margin-top: 3px; }
.pledge { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 11px; }
.pledge li { display: flex; gap: 11px; font-size: 1.02rem; }
.pledge .ic { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--success-bg); color: var(--success); display: grid; place-items: center; font-weight: 900; font-size: .78rem; margin-top: 2px; }
.callout { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: var(--radius); padding: 16px 18px; font-size: 1.02rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid #1E293B; background: #0F172A; padding: 32px 0 42px; margin-top: 24px; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; color: #F1F5F9; margin-bottom: 18px; }
.foot-brand:hover { text-decoration: none; }
.foot-brand .brand-accent { color: #60A5FA; }
.site-footer .disclosure, .site-footer .method { font-size: .94rem; color: #94A3B8; margin-bottom: 14px; max-width: 780px; }
.site-footer strong { color: #F1F5F9; }
.site-footer .disclosure a, .foot-links a { color: #93C5FD; }
.foot-links a { margin-right: 20px; font-size: .96rem; }
.foot-meta { font-size: .86rem; color: #64748B; margin-top: 12px; }

/* ---------- homepage guide links + landing cross-links ---------- */
.guide-section { margin: 44px 0 10px; }
.guide-links { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px 16px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.guide-links a { display: block; background: #fff; border: 1px solid var(--secondary); border-radius: 10px; padding: 12px 15px; font-weight: 600; font-size: .98rem; color: var(--text); transition: all .12s ease; }
.guide-links a:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-hover); text-decoration: none; }

/* ---------- landing pages (best-<exam>-coaching) ---------- */
.crumb { font-size: .86rem; color: var(--muted); margin: 22px 0 0; }
.crumb a { color: var(--muted); text-decoration: underline; }
.lp-hero { padding: 14px 0 8px; }
.lp-hero h1 { font-size: 2.05rem; line-height: 1.14; margin: 8px 0 12px; }
.lp-sub { color: var(--muted); font-size: 1.08rem; margin: 0 0 12px; }
.lp-meta { font-size: .9rem; color: var(--muted); background: var(--tint); border: 1px solid #C7D9F5; border-radius: 10px; padding: 10px 13px; }
.lp-meta strong { color: var(--text); }

.lp-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 0; }
.lp-item { border: 1px solid var(--secondary); border-radius: var(--radius); padding: 18px 20px; background: var(--bg); box-shadow: var(--shadow); }
.lp-item-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.lp-head-l { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lp-rank { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--primary); color: #fff; font-weight: 800; font-size: 1rem; }
.lp-name { margin: 0; font-size: 1.3rem; }
.lp-rcount { color: var(--muted); font-weight: 500; font-size: .84rem; }
.lp-fee { margin: 10px 0 0; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.lp-fee-tag { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; vertical-align: middle; color: var(--success); background: var(--success-bg); border: 1px solid #A7F3D0; border-radius: 5px; padding: 1px 7px; margin-left: 4px; }
.lp-fee-tag.reported { color: var(--warning); background: var(--warning-bg); border-color: #FDE68A; }
.lp-fee-none { font-weight: 600; color: var(--muted); }
.lp-verdict { margin: 11px 0 0; font-size: 1rem; color: var(--text); line-height: 1.6; }
.lp-sides { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; margin: 14px 0 0; }
.lp-side { min-width: 0; border: 1px solid var(--secondary); border-radius: 10px; padding: 11px 13px; overflow-wrap: break-word; }
.lp-like { border-color: #A7F3D0; }
.lp-flag { border-color: #FECACA; }
.lp-side-lab { display: block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 7px; }
.lp-like .lp-side-lab { color: var(--success); }
.lp-flag .lp-side-lab { color: var(--danger); }
.lp-side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.lp-side li { font-size: .92rem; line-height: 1.5; }
.lp-q { font-style: italic; }
.lp-cite { white-space: nowrap; font-size: .74rem; color: var(--muted); border: 1px solid var(--secondary); border-radius: 5px; padding: 1px 6px; text-decoration: none; }
.lp-cite:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.lp-actions { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; margin: 14px 0 0; }
.lp-more { font-weight: 600; font-size: .96rem; }
.lp-site { font-size: .9rem; color: var(--muted); text-decoration: underline; }
.lp-scope { font-size: .84rem; color: var(--muted); background: #fff; border: 1px dashed var(--secondary); border-radius: 8px; padding: 9px 12px; line-height: 1.5; margin: 16px 0 0; }
.lp-compare-cta { margin: 26px 0 8px; }

.faq { margin: 40px 0 10px; }
.faq-item { border: 1px solid var(--secondary); border-radius: 10px; padding: 0; margin: 10px 0 0; background: #fff; overflow: hidden; }
.faq-q { cursor: pointer; padding: 14px 16px; font-weight: 600; font-size: 1.04rem; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; float: right; color: var(--primary); font-weight: 800; }
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a { padding: 0 16px 15px; color: var(--muted); font-size: .98rem; line-height: 1.6; }
.lp-cross { margin: 40px 0 10px; }

@media (max-width: 560px) { .lp-sides { grid-template-columns: 1fr; } }

@media (max-width: 640px) {
  html { font-size: 17px; }
  .hero h1 { font-size: 1.9rem; }
  .lp-hero h1 { font-size: 1.7rem; }
  .site-nav a { margin-left: 16px; }
  .trust-inner { gap: 6px 16px; }
  .inst-row { flex-direction: column; align-items: stretch; }
}
