/* ==========================================================================
   Honest PM Tools — price-transparency identity
   Fresh · honest · green/white · big clear price tables front and centre
   System fonts only, zero external resources, zero JS.
   ========================================================================== */

:root {
  /* surfaces */
  --paper: #ffffff;
  --mint: #f2f9f4;
  --mint-strong: #e4f3ea;
  --pine: #0d2b1c;
  --pine-2: #123a26;

  /* ink */
  --ink: #13211a;
  --ink-soft: #33473c;
  --muted: #52655b;

  /* brand greens */
  --green: #16a34a;
  --green-btn: #15803d;
  --green-deep: #116932;
  --green-dark: #0b5226;

  /* semantic (honest / caveat / hidden-cost) */
  --ok-ink: #116932;
  --ok-bg: #e7f5ec;
  --ok-line: #c4e6d1;
  --warn-ink: #8a5a00;
  --warn-bg: #fdf3dd;
  --warn-line: #efdcae;
  --bad-ink: #b42318;
  --bad-bg: #fdecea;
  --bad-line: #f5c6c0;
  --red: #b42318;

  /* lines & depth */
  --border: #dcebe1;
  --border-strong: #c3ddcd;
  --shadow-sm: 0 1px 2px rgba(13, 43, 28, 0.06);
  --shadow-md: 0 2px 6px rgba(13, 43, 28, 0.06), 0 12px 32px -16px rgba(13, 43, 28, 0.18);
  --shadow-lg: 0 4px 12px rgba(13, 43, 28, 0.08), 0 24px 48px -20px rgba(13, 43, 28, 0.25);

  /* shape */
  --radius: 14px;
  --radius-sm: 9px;
  --radius-pill: 999px;

  /* type */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;

  /* rhythm */
  --section-pad: clamp(3.5rem, 2.4rem + 4vw, 6rem);
  --flow: clamp(1rem, 0.85rem + 0.6vw, 1.5rem);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem; /* sticky header clearance for #anchors */
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #bce8cc; color: var(--pine); }

img, svg { max-width: 100%; height: auto; }

a { color: var(--green-deep); }

p, ul, ol { margin: 0 0 var(--flow); }

h1, h2, h3 { text-wrap: balance; overflow-wrap: break-word; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--green-btn);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
}
.narrow { max-width: 780px; }

/* --------------------------------------------------------------------------
   Header — sticky, clean white
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  min-height: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.brand .mark {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.6rem;
  background: linear-gradient(145deg, var(--green), var(--green-btn));
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), var(--shadow-sm);
}
.brand:hover .mark { background: linear-gradient(145deg, var(--green-btn), var(--green-dark)); }

.site-header nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.site-header nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.site-header nav a:hover {
  background: var(--mint-strong);
  color: var(--green-dark);
}

/* --------------------------------------------------------------------------
   Hero — fresh white with soft green light
   -------------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(56rem 30rem at 88% -12%, rgba(22, 163, 74, 0.14), transparent 62%),
    radial-gradient(44rem 24rem at -8% 112%, rgba(22, 163, 74, 0.1), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
  padding: clamp(3.5rem, 2.5rem + 5vw, 7rem) 0 clamp(3rem, 2rem + 4vw, 5.5rem);
  border-bottom: 1px solid var(--border);
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 1.15rem + 4.6vw, 4.1rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  max-width: 22ch;
}
.hero h1 .line {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 0.09em;
}

.lede {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.28rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 2.25rem;
}
.lede strong { color: var(--green-deep); }

.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85em 1.6em;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn.primary {
  background: var(--green-btn);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 2px rgba(13, 43, 28, 0.25),
    0 8px 20px -8px rgba(21, 128, 61, 0.55);
}
.btn.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 2px 4px rgba(13, 43, 28, 0.25),
    0 14px 28px -10px rgba(21, 128, 61, 0.6);
}
.btn.primary:active { transform: translateY(0); }
.btn.outline {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn.outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--mint);
}
.btn.large {
  padding: 1em 2em;
  font-size: 1.08rem;
  border-radius: 0.85rem;
}

/* --------------------------------------------------------------------------
   Quick stats — one deep-green band, the numbers do the talking
   -------------------------------------------------------------------------- */
.quick-stat {
  background:
    radial-gradient(40rem 20rem at 100% 0%, rgba(74, 222, 128, 0.12), transparent 60%),
    linear-gradient(160deg, var(--pine) 0%, var(--pine-2) 100%);
  color: #fff;
  padding: clamp(3rem, 2.2rem + 3vw, 4.75rem) 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1000px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stat-grid { grid-template-columns: 1fr; } }

.stat {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid rgba(251, 191, 36, 0.85);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
}
.stat .big {
  font-family: var(--font-mono);
  font-size: clamp(2.1rem, 1.8rem + 1.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fbbf24;
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.stat .small {
  color: #cfe4d6;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.8rem 0 0;
}
.stat-grid .stat:last-child { border-top-color: #4ade80; }
.stat-grid .stat:last-child .big { color: #4ade80; }

/* --------------------------------------------------------------------------
   Sections & headings
   -------------------------------------------------------------------------- */
section { padding: var(--section-pad) 0; }
.hero, .quick-stat { /* padded above */ }

section h2 {
  font-size: clamp(1.6rem, 1.25rem + 1.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}

.real-prices { background: var(--paper); }
.real-prices > .container > p { max-width: 70ch; color: var(--ink-soft); }
.muted { color: var(--muted); font-size: 0.9em; }

/* --------------------------------------------------------------------------
   Price tables — the centrepiece
   Every table lives in a .table-wrap: card chrome + its own horizontal
   scroll on small screens, never page-wide overflow.
   -------------------------------------------------------------------------- */
.table-wrap {
  margin: 2rem 0 0;
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.table-wrap:focus-visible { outline-offset: 4px; }
.table-wrap + .footnote { margin-top: 1rem; }

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  min-width: 60rem; /* wide comparison — scrolls inside its card on mobile */
}
.price-table.compact { min-width: 34rem; font-size: 0.93rem; }

.price-table th {
  background: var(--mint-strong);
  color: var(--pine);
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.1rem;
  border-bottom: 2px solid var(--green);
  white-space: nowrap;
}

.price-table td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:nth-child(even) td { background: #fafdfb; }
.price-table tbody tr:hover td { background: var(--mint); }

.price-table .real {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* winner row — the honest one, in green */
.price-table .winner td,
.price-table tbody tr.winner:nth-child(even) td,
.price-table tbody tr.winner:hover td {
  background: linear-gradient(90deg, #e9f7ee 0%, #f6fbf8 70%);
  border-bottom-color: #cdeada;
}
.price-table .winner td:first-child { box-shadow: inset 4px 0 0 var(--green); }
.price-table .winner strong { color: var(--green-dark); font-size: 1.05em; }
.price-table .winner td.real { color: var(--green-deep); }

.price-table a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #a9dcbc;
  transition: border-color 0.15s ease;
}
.price-table a:hover { border-bottom-color: var(--green-deep); }

/* status badges: honest / caveat / hidden cost */
.ok, .warn, .bad {
  display: inline-block;
  padding: 0.22em 0.7em 0.24em;
  border-radius: var(--radius-pill);
  font-size: 0.82em;
  font-weight: 650;
  line-height: 1.4;
}
.ok::before, .warn::before, .bad::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: currentColor;
  margin-right: 0.5em;
  vertical-align: 0.08em;
}
.ok   { color: var(--ok-ink);   background: var(--ok-bg);   border: 1px solid var(--ok-line); }
.warn { color: var(--warn-ink); background: var(--warn-bg); border: 1px solid var(--warn-line); }
.bad  { color: var(--bad-ink);  background: var(--bad-bg);  border: 1px solid var(--bad-line); }

.footnote {
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 75ch;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Winner block
   -------------------------------------------------------------------------- */
.winner-block {
  background: linear-gradient(180deg, var(--mint) 0%, #eef7f1 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.winner-pill {
  display: inline-block;
  background: var(--green-btn);
  color: #fff;
  padding: 0.42rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.winner-block h2 { margin-bottom: 1.5rem; }
.winner-block h3 {
  font-size: clamp(1.2rem, 1.1rem + 0.6vw, 1.45rem);
  font-weight: 750;
  margin: 2.5rem 0 0.85rem;
}
.winner-grid { display: grid; gap: 1rem; max-width: 62rem; }
.winner-grid p { max-width: 70ch; color: var(--ink-soft); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--flow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 0.65rem 2.5rem;
}
@media (max-width: 400px) { .check-list { grid-template-columns: 1fr; } }
.check-list li {
  position: relative;
  padding-left: 2.15rem;
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--ok-bg);
  border: 1px solid var(--ok-line);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-grid;
  place-items: center;
}

.cta-row { margin: 2rem 0 0; }

/* --------------------------------------------------------------------------
   The four pricing tricks — numbered cards
   -------------------------------------------------------------------------- */
.tricks { background: var(--paper); }
.tricks .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.tricks h2 { grid-column: 1 / -1; margin-bottom: 0.5rem; }
@media (max-width: 760px) { .tricks .container { grid-template-columns: 1fr; } }

.trick {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.trick:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.trick-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--green-deep);
  background: var(--mint-strong);
  border-radius: var(--radius-sm);
  padding: 0.3em 0.7em;
}
.trick h3 {
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  margin: 0.85rem 0 0.6rem;
  color: var(--ink);
}
.trick p { margin: 0; color: var(--ink-soft); }
.trick strong { color: var(--bad-ink); font-weight: 650; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { background: var(--mint); border-top: 1px solid var(--border); }
.faq h2 { margin-bottom: 1.5rem; }

.faq details {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq details[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
  padding: 1.05rem 3.25rem 1.05rem 1.35rem;
  border-radius: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2.5px solid var(--green-deep);
  border-bottom: 2.5px solid var(--green-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq summary:hover { color: var(--green-dark); }
.faq details p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* --------------------------------------------------------------------------
   CTA strip
   -------------------------------------------------------------------------- */
.cta-strip {
  background:
    radial-gradient(50rem 24rem at 50% -30%, rgba(74, 222, 128, 0.18), transparent 65%),
    linear-gradient(150deg, var(--pine) 0%, #14522f 62%, #196b3d 100%);
  color: #fff;
  text-align: center;
}
.cta-strip h2 { color: #fff; }
.cta-strip p {
  color: #cfe8d8;
  font-size: 1.08rem;
  max-width: 55ch;
  margin: 0 auto 2rem;
}
.cta-strip .btn.primary {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 16px 32px -12px rgba(0, 0, 0, 0.4);
}
.cta-strip .btn.primary:hover {
  background: var(--mint-strong);
  color: var(--pine);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0b2317;
  color: #b9cfc1;
  padding: clamp(2.5rem, 2rem + 2vw, 3.5rem) 0;
  font-size: 0.92rem;
}
.site-footer p { margin: 0 0 0.6rem; }
.site-footer a {
  color: #8fdcae;
  text-decoration: none;
  border-bottom: 1px solid rgba(143, 220, 174, 0.35);
}
.site-footer a:hover { border-bottom-color: #8fdcae; }
.site-footer :focus-visible { outline-color: #8fdcae; }
.disclosure {
  font-size: 0.82rem;
  color: #8aa392;
  max-width: 70ch;
  margin-top: 1.25rem;
}

/* --------------------------------------------------------------------------
   Review / article pages
   -------------------------------------------------------------------------- */
.review-hero {
  background:
    radial-gradient(48rem 24rem at 90% -20%, rgba(22, 163, 74, 0.13), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 2.2rem + 3.5vw, 5.5rem) 0 clamp(2.5rem, 2rem + 2.5vw, 4rem);
}

.review-hero .badge {
  display: inline-block;
  background: var(--green-btn);
  color: #fff;
  padding: 0.42rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.review-hero h1 {
  font-size: clamp(1.85rem, 1.3rem + 2.9vw, 3.1rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  max-width: 26ch;
}
.review-hero .lede { margin-bottom: 0; }

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.review-meta span {
  display: inline-flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 0.4em 1em;
  font-size: 0.88rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.review-meta strong { color: var(--green-dark); margin-left: 0.3em; }

/* comfortable long-form measure (~70ch) */
.review-body {
  max-width: 46rem;
  margin: 0 auto;
  padding-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  padding-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.review-body h2 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 2.75rem 0 0.85rem;
}
.review-body h2:first-child { margin-top: 0; }
.review-body h3 {
  font-size: clamp(1.12rem, 1.05rem + 0.4vw, 1.3rem);
  font-weight: 750;
  margin: 2.25rem 0 0.75rem;
}
.review-body p { color: var(--ink-soft); line-height: 1.75; }
.review-body p strong, .review-body li strong { color: var(--ink); }
.review-body ul, .review-body ol { padding-left: 1.4rem; color: var(--ink-soft); }
.review-body li { margin-bottom: 0.5rem; line-height: 1.65; }
.review-body a { text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.review-body a.btn { text-decoration: none; }
.review-body .table-wrap { margin: 1.5rem 0 2rem; }
.review-body .price-table { min-width: 40rem; }
.review-body .price-table.compact { min-width: 30rem; }
.review-body .price-table th { white-space: normal; }
.review-body .price-table th,
.review-body .price-table td { padding-inline: 0.85rem; }

.back-link { margin-top: 3rem; }
.back-link a, .review-body > p:last-child a:not(.btn) {
  font-weight: 650;
  text-decoration: none;
  border-bottom: 2px solid #a9dcbc;
}
.back-link a:hover { border-bottom-color: var(--green-deep); }

/* --------------------------------------------------------------------------
   Motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media print {
  .site-header, .hero-cta, .cta-strip, .cta-row, .skip-link, .btn { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; line-height: 1.5; }
  .hero, .review-hero, .quick-stat, .winner-block, .tricks, .faq, .real-prices {
    background: #fff;
    color: #000;
    border: 0;
    padding: 1.25rem 0;
  }
  .quick-stat, .quick-stat .stat .small { color: #000; }
  .stat { border: 1px solid #bbb; }
  .stat .big { color: #000; }
  .stat-grid .stat:last-child .big { color: #000; }
  .table-wrap { overflow: visible; box-shadow: none; border: 1px solid #999; }
  .price-table, .price-table.compact, .review-body .price-table { min-width: 0; }
  .price-table th { background: #eee; color: #000; border-bottom-color: #000; }
  .ok, .warn, .bad { border: 1px solid #999; background: #fff; color: #000; }
  a { color: #000; }
  section { padding: 1.25rem 0; }
}

/* --------------------------------------------------------------------------
   Small screens
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .header-inner { justify-content: center; text-align: center; }
  .hero-cta .btn { width: 100%; }
  .review-meta span { font-size: 0.82rem; }
  .price-table th, .price-table td { padding: 0.75rem 0.85rem; }
}
