/* ============================================================
   Debt Freedom — single site stylesheet
   Shared chrome (nav/footer/tokens) is global.
   App-only rules are scoped under  body.app   (index.html)
   Content rules are scoped under    body.page  (methods/guides/legal/404)
   ============================================================ */

/* ── Tokens + reset (shared) ─────────────────────────────── */
:root {
  --bg: #0f1117;
  --surface: #1a1d27;
  --surface2: #222638;
  --border: #2e3350;
  --accent: #6c63ff;
  --accent2: #ff6584;
  --accent3: #43e97b;
  --gold: #f9c74f;
  --text: #e8eaf6;
  --muted: #7b80a0;
  --snow: #4fc3f7;
  --aval: #ff6584;
  --ratio: #43e97b;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}
body.app  { min-height: 100vh; padding: 32px 16px 64px; }
body.page { line-height: 1.7; padding: 40px 20px 0; }

/* ── Shared chrome: top nav ──────────────────────────────── */
.topnav {
  max-width: 760px;
  margin: 0 auto 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.9rem;
}
body.app .topnav { max-width: 900px; }
.topnav .brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; color: var(--text); text-decoration: none; margin-right: auto; letter-spacing: -0.3px; }
.topnav a { color: var(--muted); text-decoration: none; }
.topnav a:hover { color: #8b7fff; }

/* ── Shared chrome: footer ───────────────────────────────── */
.site-footer {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 28px 16px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.disclaimer { color: var(--muted); font-size: 0.8rem; line-height: 1.6; max-width: 620px; margin: 0 auto 16px; }
.disclaimer strong { color: #c3c7e0; }
.footer-links { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; font-size: 0.85rem; margin-bottom: 12px; }
.footer-links a { color: var(--accent); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-links span { color: var(--muted); }
.copyright { color: var(--muted); font-size: 0.78rem; }

/* ── Embed mode (?embed=1) ───────────────────────────────── */
body.embed { padding: 16px 12px 24px; }
body.embed > .topnav,
body.embed > header,
body.embed .info-section,
body.embed .site-footer { display: none; }
body.embed .embed-credit { display: block; }
.embed-credit { display: none; text-align: center; margin-top: 18px; font-size: 0.8rem; }
.embed-credit a { color: var(--muted); text-decoration: none; }
.embed-credit a:hover { color: var(--accent); }

/* ── Accessibility (shared) ──────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.toggle input:focus-visible ~ .toggle-track { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   APP — the calculator (body.app)
   ============================================================ */
header { text-align: center; margin-bottom: 48px; }
.logo-wrap { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 12px; }
header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 0%, #a89dff 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
header p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; line-height: 1.6; }

.container { max-width: 900px; margin: 0 auto; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
.card-title svg { flex-shrink: 0; }

/* Debt rows */
.debt-list { display: flex; flex-direction: column; gap: 12px; }
.debt-row {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr 0.85fr 1fr auto;
  gap: 10px;
  align-items: end;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  transition: border-color 0.2s;
}
.debt-row:hover { border-color: var(--accent); }
.field { display: flex; flex-direction: column; gap: 5px; }
label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.7px; color: var(--muted); }

input[type="text"], input[type="number"], input[type="month"] {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  padding: 9px 12px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield;
  font-family: inherit;
  color-scheme: dark;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button { -webkit-appearance: none; }
input[type="month"] { cursor: pointer; caret-color: transparent; }
input[type="month"]::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
input[type="month"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
input[type="month"]::-webkit-datetime-edit { color: var(--text); }
input[type="month"]:invalid::-webkit-datetime-edit,
input[type="month"]:not(:focus):placeholder-shown::-webkit-datetime-edit { color: var(--muted); }
input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(108,99,255,0.18); }

.debt-type {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  padding: 9px 30px 9px 12px;
  width: 100%;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237b80a0' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
}
.debt-type:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(108,99,255,0.18); }
.debt-type option { background: var(--surface); color: var(--text); }

.btn-remove {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  align-self: flex-end;
}
.btn-remove:hover { background: rgba(255,101,132,0.12); border-color: var(--accent2); color: var(--accent2); }

/* Buttons */
.btn-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(108,99,255,0.08); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #8b7fff);
  color: #fff;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(108,99,255,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(108,99,255,0.5); }
.btn-primary:active { transform: translateY(0); }

.extra-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Results */
#results { display: none; }
.winner-banner {
  background: linear-gradient(135deg, #1e2340 0%, #252a45 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 32px rgba(249,199,79,0.15);
}
.winner-icon { flex-shrink: 0; }
.winner-text h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 4px; }
.winner-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

.methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.methods-grid.info-open { position: relative; z-index: 40; }

.method-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.method-card.winner { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(249,199,79,0.2); }
.method-card .winner-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0f1117;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.info-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 2px;
  line-height: 0;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  z-index: 3;
}
.info-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.info-pop {
  position: absolute;
  top: 38px;
  left: 14px;
  right: 14px;
  background: #11131c;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  box-shadow: 0 12px 36px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 5;
}
.info-pop.open { opacity: 1; visibility: visible; transform: translateY(0); }
.method-card.info-active { z-index: 30; }
.info-pop-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 7px; letter-spacing: 0.2px; }
.info-pop-body { font-size: 0.8rem; color: var(--text); line-height: 1.5; margin-bottom: 10px; opacity: 0.85; }
.info-pop-formula {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  padding: 8px 10px;
  border-radius: 7px;
  text-align: center;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.method-card .method-icon { margin-bottom: 12px; }
.method-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.method-card .method-desc { font-size: 0.78rem; color: var(--muted); margin-bottom: 16px; line-height: 1.4; }

.stat-big { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-date { font-size: 0.78rem; color: var(--text); opacity: 0.85; margin-top: 6px; font-weight: 600; }
.stat-row { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.stat-sub { font-size: 0.85rem; color: var(--muted); }
.stat-sub strong { color: var(--text); }

.snow-color { color: var(--snow); }
.aval-color { color: var(--aval); }
.ratio-color { color: var(--ratio); }

/* Timeline chart */
.chart-wrap { position: relative; height: 180px; margin: 8px 0 24px; }
canvas#payoffChart { width: 100% !important; height: 100% !important; }
.chart-legend { display: flex; gap: 20px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Toggle */
.toggle-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.toggle-label { font-size: 0.9rem; color: var(--muted); }
.toggle { position: relative; width: 44px; height: 24px; cursor: pointer; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-track { position: absolute; inset: 0; background: var(--border); border-radius: 24px; transition: background 0.2s; }
.toggle input:checked + .toggle-track { background: var(--accent); }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 0.2s; }
.toggle input:checked ~ .toggle-thumb { transform: translateX(20px); }

/* Schedule table (scoped so it can't clash with content tables) */
#tableSection { display: none; }
.table-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.tab-btn {
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
}
.tab-btn.active-snow { background: rgba(79,195,247,0.12); border-color: var(--snow); color: var(--snow); }
.tab-btn.active-aval { background: rgba(255,101,132,0.12); border-color: var(--aval); color: var(--aval); }
.tab-btn.active-ratio { background: rgba(67,233,123,0.12); border-color: var(--ratio); color: var(--ratio); }
.table-wrap { overflow-x: auto; max-height: 420px; overflow-y: auto; border-radius: 10px; border: 1px solid var(--border); }

body.app table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
body.app thead { position: sticky; top: 0; background: var(--surface2); z-index: 2; }
body.app th {
  padding: 11px 16px;
  text-align: right;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
body.app th:first-child { text-align: left; }
body.app td {
  padding: 10px 16px;
  text-align: right;
  border-bottom: 1px solid rgba(46,51,80,0.5);
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
body.app td:first-child { text-align: left; color: var(--muted); font-size: 0.8rem; }
body.app tbody tr:last-child td { border-bottom: none; }
body.app tbody tr:hover td { background: rgba(108,99,255,0.06); }
.paid-off { color: var(--accent3) !important; font-weight: 700; }

/* Error */
.error-msg {
  background: rgba(255,101,132,0.1);
  border: 1px solid var(--accent2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--accent2);
  margin-top: 12px;
  display: none;
}

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.45s ease both; }
.fade-up-2 { animation: fadeUp 0.45s ease 0.1s both; }
.fade-up-3 { animation: fadeUp 0.45s ease 0.2s both; }

.input-prefix { position: relative; }
.input-prefix span { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.9rem; pointer-events: none; }
.input-prefix input { padding-left: 24px; }
.pct-suffix { position: relative; }
.pct-suffix span { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.9rem; pointer-events: none; }
.pct-suffix input { padding-right: 26px; }

.divider { height: 1px; background: var(--border); margin: 4px 0 20px; }

/* Download card */
.download-card { background: linear-gradient(135deg, #1c2038 0%, #21263d 100%); border: 1px solid var(--accent); }
.download-inner { display: flex; align-items: center; gap: 24px; }
.download-art { flex-shrink: 0; }
.download-text { flex: 1; }
.download-text h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 5px; }
.download-text p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.download-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Methodology / FAQ (on the app page) */
.info-section { margin-top: 8px; }
.section-h { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.section-lead { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 22px; max-width: 640px; }
.info-section a { color: var(--accent); text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(108,99,255,0.35); transition: color 0.2s, border-color 0.2s; }
.info-section a:hover { color: #8b7fff; border-bottom-color: #8b7fff; }

.learn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.learn-item { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.learn-item h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.learn-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.learn-item code { display: inline-block; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.74rem; color: var(--accent); background: rgba(108,99,255,0.1); padding: 5px 9px; border-radius: 6px; }

.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 0 18px; transition: border-color 0.2s; }
.faq details[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; padding: 0 0 16px; }

/* App responsive */
@media (max-width: 700px) {
  .debt-row { grid-template-columns: 1fr 1fr; }
  .debt-row .btn-remove { grid-column: span 2; justify-self: end; }
  .methods-grid { grid-template-columns: 1fr; }
  .extra-row { grid-template-columns: 1fr; }
  header h1 { font-size: 1.8rem; }
  .winner-banner { flex-direction: column; text-align: center; }
  .download-inner { flex-direction: column; text-align: center; }
  .download-actions { width: 100%; flex-direction: column; }
  .download-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CONTENT — methods / guides / legal / 404 (body.page)
   Base element rules use the .page class (specificity 0,1,1) and
   come BEFORE component classes so .tile/.pros-cons override them.
   ============================================================ */
.wrap { max-width: 760px; margin: 0 auto; }

.page a { color: #8b7fff; }
.page h1 { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 10px; line-height: 1.2; }
.page h2 { font-size: 1.35rem; font-weight: 700; margin: 36px 0 12px; letter-spacing: -0.3px; }
.page h3 { font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; }
.page p, .page li { color: #c3c7e0; margin-bottom: 14px; }
.page ul, .page ol { padding-left: 22px; margin-bottom: 14px; }
.page strong { color: var(--text); }

.lede { font-size: 1.08rem; color: var(--muted); margin-bottom: 28px; }

.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: #8b7fff; }

.formula {
  display: inline-block; font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.9rem; color: var(--accent); background: rgba(108,99,255,0.1);
  padding: 8px 14px; border-radius: 8px; margin: 4px 0 18px;
}

.page table { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin: 8px 0 22px; }
.page th, .page td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.page th { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }
.page td { color: #c3c7e0; }

.callout {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--accent); border-radius: 10px;
  padding: 16px 20px; margin: 20px 0;
}
.callout p { margin: 0; }

.updated { color: var(--muted); font-size: 0.85rem; margin: -2px 0 24px; }

.notfound { text-align: center; padding: 32px 0 48px; }
.notfound .nf-code {
  font-size: 5rem; font-weight: 800; line-height: 1; letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 0%, #a89dff 60%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.notfound h1 { font-size: 1.5rem; }
.notfound p { max-width: 460px; margin: 8px auto 4px; }

.cta, .page a.cta {
  display: block; background: linear-gradient(135deg, var(--accent), #8b7fff);
  color: #fff; text-decoration: none; text-align: center; font-weight: 700;
  padding: 16px 24px; border-radius: 12px; margin: 32px 0;
  box-shadow: 0 4px 20px rgba(108,99,255,0.3); transition: transform .2s, box-shadow .2s;
}
.cta:hover, .page a.cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(108,99,255,0.5); color: #fff; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 8px 0 24px; }
.tile {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px; text-decoration: none; transition: border-color .2s, transform .2s;
}
.tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.tile h3 { margin: 0 0 6px; color: var(--text); }
.tile p { margin: 0; font-size: 0.86rem; color: var(--muted); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 8px 0 22px; }
.pros-cons > div { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; }
.pros-cons h3 { margin-top: 0; }
.pros-cons .pros h3 { color: var(--accent3); }
.pros-cons .cons h3 { color: var(--accent2); }
.pros-cons ul { margin-bottom: 0; }
.pros-cons li { font-size: 0.9rem; }

/* Content responsive */
@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
  .page h1 { font-size: 1.7rem; }
}
