/* =====================================================================
   SmartRenoCalc — style.css
   Design system: Deep Navy / Emerald / Slate / White (high-trust US SaaS)
   Fonts: Space Grotesk (display) / Inter (body) / IBM Plex Mono (data)
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------------- */
:root {
  --color-navy-900: #0B1B33;
  --color-navy-700: #142A4D;
  --color-navy-500: #1F3A63;
  --color-emerald-600: #059669;
  --color-emerald-700: #047857;
  --color-emerald-400: #34D399;
  --color-emerald-50: #ECFDF5;
  --color-slate-700: #334155;
  --color-slate-500: #64748B;
  --color-slate-200: #E2E8F0;
  --color-slate-100: #F1F5F9;
  --color-slate-50: #F8FAFC;
  --color-white: #FFFFFF;
  --color-red-600: #DC2626;
  --color-red-50: #FEF2F2;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-data: 'IBM Plex Mono', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.25rem;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 1px 3px rgba(11,27,51,0.08), 0 1px 2px rgba(11,27,51,0.06);
  --shadow-lg: 0 10px 25px rgba(11,27,51,0.12), 0 4px 10px rgba(11,27,51,0.06);

  --max-width: 1180px;
  --tier-accent: var(--color-slate-500);
}

/* ---------------------------------------------------------------------
   2. Reset & base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-slate-700);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: var(--text-base);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--color-emerald-700); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
input { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 var(--space-4);
  color: var(--color-navy-900);
  line-height: 1.2;
  font-weight: 700;
}
p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--color-emerald-600);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------
   3. Layout helpers
   --------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-8); }
}
.section { padding: var(--space-12) 0; }
.section-narrow { max-width: 760px; margin: 0 auto; }
.section-heading { text-align: center; margin-bottom: var(--space-8); }
.section-heading p { color: var(--color-slate-500); max-width: 560px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-emerald-700);
  margin-bottom: var(--space-2);
}

/* ---------------------------------------------------------------------
   4. Header & nav
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-navy-900);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.logo span { color: var(--color-emerald-600); }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-list {
  display: flex;
  gap: var(--space-6);
  font-weight: 500;
  color: var(--color-navy-900);
}
.nav-list a:hover { text-decoration: none; color: var(--color-emerald-700); }

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-slate-200);
    flex-direction: column;
    gap: 0;
    padding: var(--space-2) 0;
    display: none;
    box-shadow: var(--shadow-card);
  }
  .nav-list.is-open { display: flex; }
  .nav-list a {
    display: block;
    padding: var(--space-3) var(--space-4);
  }
  .nav-list a:hover { background: var(--color-slate-50); }
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-list { align-items: center; }
}

/* ---------------------------------------------------------------------
   5. Ad slots
   --------------------------------------------------------------------- */
.ad-slot {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-200);
  border-bottom: 1px solid var(--color-slate-200);
  overflow: hidden;
}
@media (min-width: 768px) {
  .ad-slot--header, .ad-slot--footer { min-height: 90px; }
}
.ad-slot--incontent { min-height: 250px; border-radius: var(--radius-md); border: 1px dashed var(--color-slate-200); }
.ad-caption {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-slate-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: var(--space-6) 0 var(--space-2);
}

/* ---------------------------------------------------------------------
   6. Hero
   --------------------------------------------------------------------- */
.hero { padding: var(--space-12) 0 var(--space-8); text-align: center; }
.hero h1 { font-size: var(--text-3xl); max-width: 760px; margin: 0 auto var(--space-4); }
@media (min-width: 768px) { .hero h1 { font-size: var(--text-4xl); } }
.hero__subhead { font-size: var(--text-lg); color: var(--color-slate-500); max-width: 600px; margin: 0 auto var(--space-6); }
.hero__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  color: var(--color-navy-700);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
}

/* ---------------------------------------------------------------------
   7. Calculator
   --------------------------------------------------------------------- */
.calculator { padding: var(--space-8) 0 var(--space-12); }
.calculator__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 1024px) {
  .calculator__grid { grid-template-columns: 45% 1fr; gap: var(--space-12); }
  .calculator__results { position: sticky; top: 88px; }
}

.field-group { margin-bottom: var(--space-8); }
.field-group__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-navy-900);
  margin-bottom: var(--space-3);
}
.field-group__hint { font-size: var(--text-sm); color: var(--color-slate-500); margin-top: var(--space-2); }

/* Option cards (project type + quality tier) */
.option-cards { display: grid; gap: var(--space-3); }
.option-cards--projects { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px) { .option-cards--projects { grid-template-columns: repeat(3, 1fr); } }
.option-cards--tiers { grid-template-columns: 1fr; }
@media (min-width: 640px) { .option-cards--tiers { grid-template-columns: repeat(3, 1fr); } }

.option-card__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.option-card__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-4);
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  height: 100%;
  position: relative;
}
.option-card__label:hover { border-color: var(--color-slate-500); }
.option-card__input:checked + .option-card__label {
  border-color: var(--color-emerald-600);
  background: var(--color-emerald-50);
}
.option-card__input:focus-visible + .option-card__label {
  outline: 2px solid var(--color-emerald-600);
  outline-offset: 2px;
}
.option-card__check {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-emerald-600);
  color: var(--color-white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.option-card__input:checked + .option-card__label .option-card__check { display: flex; }
.option-card__icon { color: var(--color-navy-700); width: 26px; height: 26px; }
.option-card__input:checked + .option-card__label .option-card__icon { color: var(--color-emerald-700); }
.option-card__title { font-weight: 600; color: var(--color-navy-900); font-size: var(--text-sm); }
.option-card__desc { font-size: var(--text-xs); color: var(--color-slate-500); }

/* Square footage slider + number */
.sqft-field { display: flex; flex-direction: column; gap: var(--space-3); }
.sqft-field__row { display: flex; align-items: center; gap: var(--space-4); }
.range-input {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: var(--color-slate-200);
  outline: none;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-navy-700);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.range-input::-webkit-slider-thumb:hover,
.range-input::-webkit-slider-thumb:focus { transform: scale(1.1); }
.range-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-navy-700);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.number-input {
  width: 96px;
  padding: var(--space-2) var(--space-3);
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-family: var(--font-data);
  text-align: center;
}
.number-input:focus { border-color: var(--color-emerald-600); outline: none; }
.sqft-field__unit { color: var(--color-slate-500); font-size: var(--text-sm); }

/* ZIP field */
.zip-field { max-width: 220px; }
.zip-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-size: var(--text-lg);
  font-family: var(--font-data);
  letter-spacing: 0.05em;
}
.zip-input:focus { border-color: var(--color-emerald-600); outline: none; }
.zip-input.is-invalid { border-color: var(--color-red-600); }
.field-error {
  color: var(--color-red-600);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
  display: none;
}
.field-error.is-visible { display: block; }
.region-hint {
  font-size: var(--text-sm);
  color: var(--color-emerald-700);
  margin-top: var(--space-2);
  font-weight: 500;
  display: none;
}
.region-hint.is-visible { display: block; }

/* Add-ons */
.addon-list { display: flex; flex-direction: column; gap: var(--space-2); }
.addon-item__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.addon-item:hover { border-color: var(--color-slate-500); }
.addon-item__input:checked + .addon-item { border-color: var(--color-emerald-600); background: var(--color-emerald-50); }
.addon-item__input:focus-visible + .addon-item { outline: 2px solid var(--color-emerald-600); outline-offset: 2px; }
.addon-item__box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid var(--color-slate-500);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.addon-item__box svg { width: 12px; height: 12px; stroke: white; display: none; }
.addon-item__input:checked + .addon-item .addon-item__box { background: var(--color-emerald-600); border-color: var(--color-emerald-600); }
.addon-item__input:checked + .addon-item .addon-item__box svg { display: block; }
.addon-item__text { font-size: var(--text-sm); color: var(--color-navy-900); }
.addon-item__text strong { font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-base);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn--primary { background: var(--color-emerald-600); color: var(--color-white); }
.btn--primary:hover { background: var(--color-emerald-700); text-decoration: none; }
.btn--secondary { background: transparent; color: var(--color-navy-700); border: 2px solid var(--color-navy-700); }
.btn--secondary:hover { background: var(--color-navy-700); color: var(--color-white); text-decoration: none; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------------
   8. Results
   --------------------------------------------------------------------- */
.results-card {
  background: var(--color-navy-900);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}
.results-empty { text-align: center; color: var(--color-slate-200); padding: var(--space-8) 0; }
.results-empty svg { margin: 0 auto var(--space-4); width: 40px; height: 40px; opacity: 0.6; }

.result-total { text-align: center; margin-bottom: var(--space-6); }
.result-total__label { font-size: var(--text-sm); color: var(--color-slate-200); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-2); }
.result-total__figure {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: var(--text-2xl);
  font-variant-numeric: tabular-nums;
  color: var(--color-white);
}
@media (min-width: 480px) { .result-total__figure { font-size: var(--text-3xl); } }
.result-total__accent {
  height: 3px;
  width: 96px;
  margin: var(--space-3) auto 0;
  border-radius: 999px;
  background: var(--tier-accent);
  transition: background-color 0.2s ease;
}

.result-metric {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-slate-200);
  margin-bottom: var(--space-6);
}
.result-metric strong { font-family: var(--font-data); color: var(--color-white); font-size: var(--text-lg); display: block; }

.breakdown { margin-bottom: var(--space-6); }
.breakdown-row { margin-bottom: var(--space-3); }
.breakdown-row__labels { display: flex; justify-content: space-between; font-size: var(--text-sm); margin-bottom: var(--space-1); }
.breakdown-row__name { color: var(--color-slate-200); }
.breakdown-row__value { font-family: var(--font-data); color: var(--color-white); }
.breakdown-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.breakdown-bar__fill { height: 100%; border-radius: 999px; background: var(--color-emerald-400); transition: width 0.5s ease; }
.breakdown-bar__fill--labor { background: var(--color-emerald-600); }
.breakdown-bar__fill--contingency { background: var(--color-slate-500); }

.addons-selected { margin-bottom: var(--space-6); font-size: var(--text-sm); }
.addons-selected h3 { color: var(--color-white); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-2); }
.addons-selected li { display: flex; justify-content: space-between; padding: var(--space-1) 0; color: var(--color-slate-200); }
.addons-selected li span:last-child { font-family: var(--font-data); color: var(--color-white); }

.roi-note {
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-emerald-400);
  margin-bottom: var(--space-6);
}
.roi-note p:last-child { color: var(--color-slate-200); font-size: var(--text-xs); margin-top: var(--space-2); }

.disclaimer { font-size: var(--text-xs); color: var(--color-slate-200); opacity: 0.8; margin-bottom: var(--space-6); }

.results-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.results-actions .btn--secondary { border-color: var(--color-white); color: var(--color-white); }
.results-actions .btn--secondary:hover { background: var(--color-white); color: var(--color-navy-900); }

/* Sticky mobile summary bar */
.sticky-summary-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: var(--space-3) var(--space-4);
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(11,27,51,0.2);
}
.sticky-summary-bar.is-visible { display: flex; }
.sticky-summary-bar__figure { font-family: var(--font-data); font-weight: 700; font-variant-numeric: tabular-nums; }
.sticky-summary-bar__label { font-size: var(--text-xs); color: var(--color-slate-200); }
@media (min-width: 1024px) {
  .sticky-summary-bar { display: none !important; }
}

/* ---------------------------------------------------------------------
   9. How it works
   --------------------------------------------------------------------- */
.how-it-works__grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 768px) { .how-it-works__grid { grid-template-columns: repeat(3, 1fr); } }
.how-card { background: var(--color-white); box-shadow: var(--shadow-card); border-radius: var(--radius-md); padding: var(--space-6); }
.how-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--color-emerald-50); color: var(--color-emerald-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
}
.how-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.how-card p { color: var(--color-slate-500); font-size: var(--text-sm); margin: 0; }

/* ---------------------------------------------------------------------
   10. Blog teaser / blog listing / article
   --------------------------------------------------------------------- */
.blog-grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  display: block;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); text-decoration: none; }
.blog-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.blog-card p { color: var(--color-slate-500); font-size: var(--text-sm); }
.blog-card__cta { color: var(--color-emerald-700); font-weight: 600; font-size: var(--text-sm); margin-top: var(--space-3); display: inline-block; }

.article { padding: var(--space-12) 0; }
.article__inner { max-width: 720px; margin: 0 auto; }
.article__meta { color: var(--color-slate-500); font-size: var(--text-sm); margin-bottom: var(--space-2); }
.article h1 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.article h2 { font-size: var(--text-xl); margin-top: var(--space-8); }
.article h3 { font-size: var(--text-lg); margin-top: var(--space-6); }
.article p, .article li { font-size: var(--text-base); color: var(--color-slate-700); }
.article ol, .article ul { padding-left: var(--space-6); margin-bottom: var(--space-4); }
.article ol li, .article ul li { margin-bottom: var(--space-2); list-style: revert; }
.article__cta {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: var(--color-slate-50);
  border-radius: var(--radius-md);
  text-align: center;
}
.article__table { width: 100%; border-collapse: collapse; margin: var(--space-6) 0; font-size: var(--text-sm); }
.article__table th, .article__table td { border: 1px solid var(--color-slate-200); padding: var(--space-2) var(--space-3); text-align: left; }
.article__table th { background: var(--color-slate-50); font-family: var(--font-display); }

/* ---------------------------------------------------------------------
   11. Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--color-slate-50); border-top: 1px solid var(--color-slate-200); padding: var(--space-8) 0 var(--space-12); }
.footer-links { display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-6); margin-bottom: var(--space-4); font-size: var(--text-sm); }
.footer-meta { font-size: var(--text-xs); color: var(--color-slate-500); }
.footer-meta p { margin-bottom: var(--space-1); }

/* ---------------------------------------------------------------------
   12. Legal / About / Contact pages
   --------------------------------------------------------------------- */
.legal-page { padding: var(--space-12) 0; }
.legal-page__inner { max-width: 720px; margin: 0 auto; }
.legal-page h1 { font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.legal-page__updated { color: var(--color-slate-500); font-size: var(--text-sm); margin-bottom: var(--space-8); }
.legal-page h2 { font-size: var(--text-lg); margin-top: var(--space-8); }
.legal-page p, .legal-page li { color: var(--color-slate-700); }
.legal-page ul { padding-left: var(--space-6); margin-bottom: var(--space-4); }
.legal-page li { list-style: disc; margin-bottom: var(--space-2); }
.contact-card { background: var(--color-slate-50); border-radius: var(--radius-md); padding: var(--space-8); text-align: center; }
.contact-card a { font-size: var(--text-lg); font-weight: 600; }

/* ---------------------------------------------------------------------
   13. Print styles
   --------------------------------------------------------------------- */
.print-only { display: none; }
@media print {
  .site-header, .nav-list, .ad-slot, #how-it-works, #blog-teaser, .site-footer, .sticky-summary-bar, #calculator {
    display: none !important;
  }
  .print-only { display: block !important; }
  #results { display: block !important; }
  .results-card { background: none !important; color: black !important; border-radius: 0; padding: 0; }
  .result-total__figure, .breakdown-row__value, .addons-selected li span:last-child, .result-metric strong { color: black !important; }
  .breakdown-row__name, .addons-selected li, .result-metric, .result-total__label, .disclaimer { color: #333 !important; }
  .roi-note { background: none !important; border: 1px solid #999 !important; color: #000 !important; }
  .roi-note p:last-child { color: #333 !important; }
  .results-actions { display: none !important; }
  body { background: white; font-size: 12pt; }
}
