:root {
  --ink: #15283a;
  --ink-2: #263c4e;
  --muted: #667886;
  --line: #dce3e7;
  --paper: #ffffff;
  --wash: #f5f7f8;
  --orange: #f36f36;
  --orange-dark: #d95720;
  --orange-soft: #fff0e9;
  --green: #278766;
  --green-soft: #eaf6f1;
  --amber: #b97813;
  --amber-soft: #fff6df;
  --red: #b94747;
  --shadow: 0 18px 60px rgba(20, 40, 56, .1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--wash); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(243, 111, 54, .25); outline-offset: 2px; }

.topbar { height: 74px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(24px, calc((100vw - 1180px) / 2)); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); }
.brand { display: inline-flex; gap: 10px; align-items: center; border: 0; background: none; font-size: 21px; font-weight: 800; color: var(--ink); padding: 0; }
.brand > span:last-child > span { color: var(--orange); }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--orange); border-radius: 9px; font-weight: 900; transform: rotate(-3deg); }
.desktop-nav { display: flex; gap: 32px; }
.desktop-nav button { border: 0; background: none; color: var(--ink-2); font-size: 14px; font-weight: 650; }
.desktop-nav button:hover { color: var(--orange); }

.primary, .outline, .ghost { border-radius: 9px; min-height: 44px; padding: 0 19px; font-weight: 750; border: 1px solid transparent; transition: .2s ease; }
.primary { background: var(--orange); color: #fff; box-shadow: 0 7px 20px rgba(243,111,54,.2); }
.primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.outline { color: var(--orange); border-color: var(--orange); background: transparent; }
.outline:hover { color: white; background: var(--orange); }
.ghost { color: var(--ink); border-color: var(--line); background: var(--paper); }
.ghost:hover { border-color: #9eabb3; background: var(--wash); }
.small { min-height: 38px; padding: 0 14px; font-size: 13px; }
.large { min-height: 53px; padding: 0 24px; }
.full { width: 100%; }
.hidden { display: none !important; }
.screen { display: none; min-height: calc(100vh - 74px); }
.screen.active { display: block; animation: reveal .25s ease-out; }
@keyframes reveal { from { opacity: 0; transform: translateY(4px); } }

.hero { min-height: 590px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; padding: 70px max(32px, calc((100vw - 1180px) / 2)); background: linear-gradient(120deg, #fbfcfc 0%, #f7f5f2 100%); overflow: hidden; }
.hero-copy { max-width: 620px; position: relative; z-index: 2; }
.eyebrow { color: var(--orange); font-weight: 850; letter-spacing: .13em; font-size: 11px; text-transform: uppercase; }
.eyebrow.centered { display: block; text-align: center; }
.eyebrow.light { color: #ff9d74; }
h1 { font-size: clamp(42px, 5vw, 67px); line-height: 1.03; letter-spacing: -.045em; margin: 20px 0 22px; max-width: 650px; }
.hero-copy > p { color: var(--muted); font-size: 18px; line-height: 1.65; max-width: 580px; }
.hero-actions { display: flex; gap: 12px; margin: 31px 0 24px; }
.quick-check { max-width: 580px; margin: 28px 0 14px; padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 12px 35px rgba(20,40,56,.08); }
.quick-check-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; align-items: end; }
.quick-check .money-input input { font-size: 18px; min-height: 48px; margin-top: 7px; }
.quick-check .money-input span { top: 23px; }
.quick-check-row button { min-height: 48px; white-space: nowrap; }
.quick-check > small { display: block; margin-top: 8px; color: var(--muted); font-size: 10px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 15px; color: var(--muted); font-size: 12px; }
.trust-row span::first-letter { color: var(--green); }

.hero-visual { position: relative; min-width: 0; padding-top: 115px; }
.hero-photo { position: absolute; inset: 0 0 auto 35px; height: 265px; margin: 0; overflow: hidden; border-radius: 19px; box-shadow: 0 25px 70px rgba(20,40,56,.18); }
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 58% center; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 45%,rgba(11,28,42,.72)); }
.hero-photo figcaption { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 15px; display: flex; align-items: center; gap: 9px; color: white; font-size: 11px; font-weight: 750; line-height: 1.4; }
.hero-photo figcaption span { width: 23px; height: 23px; flex: 0 0 23px; display: grid; place-items: center; border-radius: 50%; background: var(--green); }

.estimate-card { z-index: 2; background: var(--paper); border-radius: 18px; box-shadow: 0 30px 90px rgba(29,48,61,.18); padding: 27px; position: relative; border: 1px solid rgba(21,40,58,.06); }
.estimate-card::before { content: ""; width: 230px; height: 230px; background: var(--orange); opacity: .11; position: absolute; border-radius: 50%; right: -110px; top: -100px; }
.estimate-top { display: flex; justify-content: space-between; align-items: start; border-bottom: 1px solid var(--line); padding-bottom: 20px; position: relative; }
.estimate-top small, .estimate-total small, .cost-columns small { color: var(--muted); display: block; font-size: 11px; margin-bottom: 7px; }
.estimate-top strong { display: block; font-size: 17px; }
.status-good { color: var(--green); background: var(--green-soft); border-radius: 20px; padding: 6px 10px; font-size: 10px; font-weight: 800; }
.estimate-total { padding: 24px 0 19px; }
.estimate-total div { font-weight: 850; font-size: clamp(25px,3vw,34px); letter-spacing: -.03em; }
.estimate-bars { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.estimate-bars > div { display: flex; align-items: center; justify-content: space-between; background: var(--paper); padding: 14px; font-size: 12px; }
.estimate-bars span { color: var(--muted); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px; }
.dot.orange { background: var(--orange); } .dot.navy { background: var(--ink); } .dot.pale { background: #a7b2ba; }
.insight { display: flex; gap: 10px; align-items: start; background: var(--amber-soft); padding: 14px; margin-top: 17px; border-radius: 10px; color: #73571d; font-size: 11px; line-height: 1.55; }
.insight span { display: grid; place-items: center; flex: 0 0 21px; height: 21px; border-radius: 50%; color: white; background: #e4a636; font-weight: 900; }
.insight p { margin: 0; }

.steps-section { padding: 80px max(32px, calc((100vw - 1180px) / 2)); background: var(--paper); }
.steps-section h2 { text-align: center; font-size: 35px; margin: 13px 0 45px; letter-spacing: -.025em; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; gap: 20px; }
.steps-grid article { padding: 25px; min-height: 210px; border: 1px solid var(--line); border-radius: 14px; position: relative; background: var(--paper); }
.step-no { position: absolute; right: 19px; top: 17px; color: #cbd3d8; font-weight: 900; font-size: 12px; }
.step-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: var(--orange-soft); color: var(--orange); font-size: 23px; font-weight: 800; }
.steps-grid h3 { margin: 20px 0 8px; font-size: 17px; }
.steps-grid p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }
.benefits { display: grid; grid-template-columns: repeat(3,1fr); background: var(--ink); color: white; padding: 38px max(32px, calc((100vw - 980px) / 2)); }
.benefits div { display: flex; align-items: center; justify-content: center; gap: 17px; border-right: 1px solid rgba(255,255,255,.15); }
.benefits div:last-child { border: 0; }
.benefits span { color: #ff986e; font-size: 34px; font-weight: 900; }
.benefits p { font-size: 12px; line-height: 1.5; color: #d5dde3; }
.premium-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 55px max(32px, calc((100vw - 1180px) / 2)); background: linear-gradient(120deg,#15283a,#203d52); color: white; }
.premium-band h2 { font-size: 31px; margin: 10px 0; }.premium-band p { max-width: 760px; color: #c5d0d7; line-height: 1.6; margin: 0; }
.offer-audit { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; padding: 75px max(32px, calc((100vw - 1180px) / 2)); background: var(--wash); }
.offer-audit-copy h2 { margin: 12px 0; font-size: 36px; line-height: 1.15; letter-spacing: -.03em; }
.offer-audit-copy p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.offer-audit-copy ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; color: var(--ink-2); font-size: 13px; }
.offer-audit-copy li::before { content: "✓"; display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 9px; border-radius: 50%; color: white; background: var(--green); font-size: 10px; font-weight: 900; }
.audit-form { background: var(--paper); padding: 28px; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.audit-form .form-grid { margin: 0 0 18px; }
.audit-form > label { margin-top: 16px; }
.audit-form .consent-row { margin: 18px 0; }
.form-note { display: block; margin-top: 10px; text-align: center; color: var(--muted); font-size: 9px; }
.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: linear-gradient(135deg,#f8fafb,#f5eee9); }
.thanks-card { width: min(560px,100%); padding: 45px; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.thanks-card > .brand { justify-content: center; margin-bottom: 35px; }
.thanks-check { width: 55px; height: 55px; display: grid; place-items: center; margin: auto; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 28px; }
.thanks-card h1 { margin: 18px auto 10px; font-size: 38px; }
.thanks-card p { color: var(--muted); line-height: 1.6; }
.thanks-link { display: inline-flex; align-items: center; text-decoration: none; margin-top: 18px; }

.wizard-header { max-width: 900px; margin: 0 auto; padding: 28px 24px 8px; }
.back-link { border: 0; background: none; color: var(--muted); padding: 0; font-size: 12px; }
.progress-copy { display: flex; justify-content: space-between; margin: 23px 0 11px; font-size: 12px; }
.progress-copy span { color: var(--orange); font-weight: 800; }
.progress-track { height: 5px; border-radius: 5px; background: #e1e6e9; }
.progress-track i { display: block; height: 100%; width: 25%; border-radius: 5px; background: var(--orange); transition: width .25s; }
.wizard-card { max-width: 900px; margin: 25px auto 80px; background: var(--paper); padding: 43px 48px 28px; box-shadow: var(--shadow); border: 1px solid var(--line); border-radius: 17px; }
.wizard-step { display: none; min-height: 390px; }
.wizard-step.active { display: block; animation: reveal .2s ease; }
.wizard-step h2 { font-size: 31px; margin: 12px 0 7px; letter-spacing: -.025em; }
.subcopy { color: var(--muted); margin: 0 0 30px; font-size: 14px; }
.form-grid { display: grid; gap: 20px; margin-top: 28px; }
.form-grid.two { grid-template-columns: repeat(2,1fr); }
.form-grid.three { grid-template-columns: repeat(3,1fr); }
.form-grid.four { grid-template-columns: repeat(4,1fr); }
.form-grid.compact { gap: 14px; }
label { display: block; color: var(--ink-2); font-size: 12px; font-weight: 750; position: relative; }
input, select, textarea { width: 100%; border: 1px solid #cad3d8; background: var(--paper); border-radius: 8px; padding: 13px 14px; color: var(--ink); margin-top: 7px; transition: .2s; }
input:hover, select:hover, textarea:hover { border-color: #93a2ac; }
label small { display: block; color: var(--muted); font-weight: 400; margin-top: 5px; }
textarea { resize: vertical; }
.scope-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; max-height: 480px; overflow-y: auto; padding-right: 5px; }
.scope-group-title { grid-column: 1 / -1; margin: 13px 0 1px; padding-bottom: 7px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.scope-option { display: grid; grid-template-columns: 1fr 82px; gap: 8px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 9px; background: var(--paper); }
.scope-option.with-price { grid-template-columns: 1fr 82px 92px; }
.scope-option:has(.scope-check input:checked) { border-color: #f4a07b; background: var(--orange-soft); }
.scope-check { display: flex; align-items: center; gap: 10px; cursor: pointer; min-width: 0; }
.scope-check input { margin: 0; width: 17px; height: 17px; flex: 0 0 17px; accent-color: var(--orange); }
.scope-check span { min-width: 0; }.scope-check b { display: block; font-size: 11px; }.scope-check small { margin: 3px 0 0; font-size: 9px; line-height: 1.35; }
.scope-quantity { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px; color: var(--muted); font-size: 9px; }
.scope-quantity input { min-width: 0; margin: 0; padding: 8px 6px; text-align: right; font-size: 10px; background: var(--paper); }
.scope-unit-price { display: grid; grid-template-columns: 1fr; gap: 2px; color: var(--muted); font-size: 8px; text-align: right; }.scope-unit-price input { min-width: 0; margin: 0; padding: 8px 6px; text-align: right; font-size: 10px; }.scope-unit-price span { white-space: nowrap; }
.scope-option:not(:has(.scope-check input:checked)) .scope-quantity,.scope-option:not(:has(.scope-check input:checked)) .scope-unit-price { opacity: .42; }.scope-option:not(:has(.scope-check input:checked)) .scope-quantity input,.scope-option:not(:has(.scope-check input:checked)) .scope-unit-price input { pointer-events: none; }
.choice-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin: 30px 0; }
.choice-cards label { cursor: pointer; position: relative; }
.choice-cards input { position: absolute; opacity: 0; }
.choice-cards label > span { min-height: 155px; display: flex; flex-direction: column; padding: 24px 19px 19px; border: 1px solid var(--line); border-radius: 11px; }
.choice-cards label:has(input:checked) > span { border: 2px solid var(--orange); padding: 23px 18px 18px; background: var(--wash); }
.choice-cards b { font-size: 15px; }
.choice-cards small { line-height: 1.45; min-height: 45px; }
.choice-cards em { margin-top: auto; color: var(--orange); font-size: 11px; font-style: normal; }
.choice-cards label > i { display: none; position: absolute; z-index: 2; right: 10px; top: -8px; background: var(--orange); color: white; font-size: 8px; padding: 4px 7px; border-radius: 10px; font-style: normal; text-transform: uppercase; }
.choice-cards label:has(input:checked) > i { display: block; }
.budget-wrap { display: grid; grid-template-columns: 1fr 1.3fr; align-items: end; gap: 28px; margin: 38px 0 25px; }
.money-input { position: relative; }
.money-input input { font-size: 24px; font-weight: 850; padding-right: 48px; }
.money-input span { position: absolute; right: 15px; top: 23px; color: var(--muted); }
.compact-money input { font-size: 16px; padding-right: 42px; }.compact-money span { top: 20px; }
.own-product-panel { display: grid; grid-template-columns: 1fr .7fr .55fr; gap: 16px; align-items: end; background: var(--wash); border: 1px solid var(--line); border-radius: 11px; padding: 18px; margin-top: 22px; }
.own-product-panel h3 { margin: 5px 0; font-size: 15px; }.own-product-panel p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.product-intro,.product-url-label { grid-column: 1 / -1; }
.product-url-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.product-url-row button { margin-top: 7px; white-space: nowrap; }
#product-status.success { color: var(--green); font-weight: 700; }
#product-status.error { color: var(--red); }
.quote-label { max-width: 380px; margin-bottom: 22px; }
.quote-details { border: 1px solid var(--line); border-radius: 10px; padding: 14px 17px; margin-bottom: 22px; background: var(--wash); }
.quote-details summary { cursor: pointer; color: var(--ink-2); font-weight: 750; font-size: 12px; }
.quote-details .form-grid { margin-top: 17px; }
.quote-verdict strong { display: block; font-size: 25px; margin: 8px 0 4px; color: var(--ink); }
.privacy-note { display: flex; align-items: start; gap: 12px; padding: 15px; border-radius: 10px; background: var(--green-soft); color: #376956; }
.privacy-note > span { color: var(--green); font-size: 21px; }
.privacy-note p { margin: 0; font-size: 11px; line-height: 1.5; }
.notes-label { margin-top: 22px; }
.wizard-actions { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 24px; margin-top: 25px; }

.result-shell, .dashboard-shell { max-width: 1180px; margin: 0 auto; padding: 45px 24px 80px; }
.result-heading, .dashboard-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 27px; }
.result-heading h2, .dashboard-header h2 { font-size: 35px; margin: 9px 0 5px; }
.result-heading p { color: var(--muted); margin: 0; font-size: 13px; }
.result-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 20px; }
.result-main { min-width: 0; }
.total-card { background: var(--ink); color: white; border-radius: 15px; padding: 28px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 35px; align-items: end; }
.total-card small { color: #bdc9d1; display: block; font-size: 11px; }
.total-card strong { font-size: 31px; display: block; margin: 7px 0; }
.total-card > div:first-child > span { color: #8ee0bc; font-size: 10px; }
.gauge-track { height: 8px; background: linear-gradient(90deg,#83bca5 0 30%,#ffb06b 30% 70%,#df796c 70%); border-radius: 10px; position: relative; }
.gauge-track i { position: absolute; width: 3px; height: 18px; top: -5px; left: 50%; background: var(--paper); box-shadow: 0 0 0 3px var(--ink); }
.gauge-labels { display: flex; justify-content: space-between; color: #aab7c0; font-size: 8px; margin-top: 9px; }
.cost-columns { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 13px 0; }
.cost-columns article { background: var(--paper); padding: 18px; border: 1px solid var(--line); border-radius: 11px; }
.cost-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 7px; margin-bottom: 17px; }
.cost-icon.orange { color: var(--orange); background: var(--orange-soft); }.cost-icon.navy { color: white; background: var(--ink); }.cost-icon.gray { color: var(--muted); background: #edf1f3; }
.cost-columns strong { display: block; font-size: 18px; }
.cost-columns p { color: var(--muted); margin: 5px 0 0; font-size: 9px; }
.breakdown-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.card-title { display: flex; justify-content: space-between; align-items: center; padding: 18px 21px; border-bottom: 1px solid var(--line); }
.card-title h3 { margin: 0; font-size: 15px; }.card-title span { color: var(--muted); font-size: 9px; }
.breakdown-row { display: grid; grid-template-columns: 1fr 120px 130px; align-items: center; padding: 14px 21px; border-bottom: 1px solid #edf0f2; font-size: 11px; }
.breakdown-row:last-child { border: 0; }
.breakdown-row small { color: var(--muted); }.breakdown-row b { text-align: right; }
.breakdown-row > span > b { display: block; text-align: left; font-size: 11px; }.breakdown-row .row-split { display: block; margin-top: 4px; font-size: 8px; color: var(--muted); }
.premium-report-card { margin-top: 14px; padding: 25px; border-radius: 14px; background: linear-gradient(135deg,#fff7f2,#fff); border: 1px solid #f2c5b2; }
.premium-report-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; }.premium-report-head h3 { font-size: 22px; margin: 8px 0 5px; }.premium-report-head p { color: var(--muted); margin: 0; font-size: 12px; }
.report-price { text-align: right; white-space: nowrap; }.report-price strong { display: block; font-size: 27px; }.report-price small { color: var(--muted); font-size: 9px; }
.report-preview { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin: 22px 0; }.report-preview > div { display: grid; grid-template-columns: 24px 1fr; padding: 13px; background: var(--paper); border-radius: 9px; border: 1px solid var(--line); }.report-preview span { grid-row: 1 / 3; color: var(--green); font-weight: 900; }.report-preview b { font-size: 11px; }.report-preview small { color: var(--muted); font-size: 9px; margin-top: 3px; }
.report-disclaimer { display: block; text-align: center; color: var(--muted); margin-top: 10px; font-size: 8px; }
.premium-report { margin-top: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }.report-document-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 25px; border-bottom: 1px solid var(--line); }.report-document-head > div > small { display: block; color: var(--muted); font-size: 8px; margin-top: 8px; letter-spacing: .12em; }.report-brand { pointer-events: none; }
.report-hero { padding: 28px; background: var(--ink); color: white; }.report-hero small { color: #b9c7d0; }.report-hero h2 { margin: 8px 0 5px; font-size: 27px; }.report-hero strong { display: block; color: #ff9b70; font-size: 31px; }.report-hero p { color: #c9d2d8; max-width: 650px; line-height: 1.55; }
.report-section { padding: 23px 27px; border-bottom: 1px solid var(--line); }.report-section h3 { font-size: 16px; margin: 0 0 14px; }.report-section ul,.report-section ol { margin: 0; padding-left: 20px; color: var(--ink-2); font-size: 11px; line-height: 1.65; }.report-section li { margin: 7px 0; }
.report-table { width: 100%; border-collapse: collapse; font-size: 10px; }.report-table th,.report-table td { padding: 10px; border-bottom: 1px solid var(--line); text-align: right; }.report-table th:first-child,.report-table td:first-child { text-align: left; }.report-table th { color: var(--muted); font-size: 8px; }.report-table .alert { color: var(--red); font-weight: 800; }.report-table .good-text { color: var(--green); font-weight: 800; }
.report-footer-note { padding: 18px 27px; color: var(--muted); font-size: 9px; line-height: 1.55; background: var(--wash); }
.checkout-summary { display: flex; justify-content: space-between; padding: 15px; margin: 18px 0; background: var(--wash); border-radius: 9px; }.checkout-summary strong { font-size: 18px; }.consent-row { display: flex; gap: 9px; align-items: start; margin: 15px 0; }.consent-row input { width: 17px; margin: 0; }.consent-row span { color: var(--muted); font-size: 9px; line-height: 1.5; }.demo-note { display: block; text-align: center; color: var(--red); margin-top: 9px; }
.result-side { display: grid; align-content: start; gap: 13px; }
.result-side article { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.verdict.good { background: var(--green-soft); border-color: #b6decd; }.verdict.warn { background: var(--amber-soft); border-color: #ead293; }.verdict.bad { background: #fceeee; border-color: #e6b7b7; }
.verdict > span { display: inline-block; font-size: 10px; font-weight: 850; padding: 5px 8px; border-radius: 20px; background: rgba(255,255,255,.65); }
.verdict h3, .publish-card h3 { font-size: 17px; margin: 12px 0 7px; }.verdict p, .publish-card p, .info-card { color: var(--muted); font-size: 11px; line-height: 1.55; }
.publish-card button { margin: 10px 0; }.publish-card > small { display: block; color: #99a5ad; text-align: center; font-size: 8px; }
.info-card ul { margin: 12px 0 0; padding-left: 17px; }.info-card li { margin: 7px 0; }
.store-card p { margin-bottom: 7px; }.store-card strong { display: block; color: var(--ink); font-size: 19px; }.store-card small { display: block; margin-top: 11px; color: #8c9aa3; line-height: 1.45; }

.dashboard-header h2 { margin-bottom: 0; }
.empty-state { max-width: 600px; margin: 60px auto; text-align: center; padding: 50px; background: var(--paper); border: 1px solid var(--line); border-radius: 15px; }
.empty-state > span { width: 55px; height: 55px; display: grid; place-items: center; margin: auto; color: var(--orange); background: var(--orange-soft); border-radius: 50%; font-size: 25px; }
.empty-state h3 { margin: 18px 0 7px; }.empty-state p { color: var(--muted); font-size: 13px; }.empty-state button { margin-top: 13px; }
.project-summary { background: var(--ink); color: white; display: grid; grid-template-columns: 1fr auto auto; gap: 45px; align-items: center; padding: 25px 29px; border-radius: 14px; }
.project-summary small { color: #aebbc3; display: block; font-size: 9px; }.project-summary h3 { margin: 7px 0 4px; }.project-summary p { margin: 0; color: #c6d0d6; font-size: 11px; }.project-summary strong { font-size: 20px; }
.live-dot { display: inline-block; width: 7px; height: 7px; background: #65d8a4; border-radius: 50%; margin-right: 6px; }
.offers-header { display: flex; justify-content: space-between; align-items: end; margin: 32px 0 14px; }.offers-header h3 { margin: 0; }.offers-header p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }.offers-header select { width: 200px; }
.offers-list { display: grid; gap: 11px; }
.offer-card { display: grid; grid-template-columns: 1.25fr .7fr .8fr .8fr auto; gap: 20px; align-items: center; background: var(--paper); border: 1px solid var(--line); padding: 19px; border-radius: 11px; }
.offer-card.best { border: 2px solid var(--green); position: relative; }.offer-card.best::before { content: "NAJBEZPIECZNIEJSZA"; position: absolute; right: 13px; top: -9px; background: var(--green); color: white; padding: 4px 8px; border-radius: 8px; font-size: 7px; font-weight: 850; letter-spacing: .08em; }
.company { display: flex; gap: 12px; align-items: center; }.company-logo { flex: 0 0 39px; height: 39px; display: grid; place-items: center; border-radius: 9px; background: var(--ink); color: white; font-size: 11px; font-weight: 850; }.company h4 { margin: 0 0 4px; font-size: 13px; }.company span { color: var(--green); font-size: 9px; }.offer-metric small { display: block; color: var(--muted); font-size: 8px; margin-bottom: 5px; }.offer-metric b { font-size: 13px; }.rating { color: #e99e29; }.offer-card .outline { white-space: nowrap; }

.contractor-hero { background: var(--ink); color: white; min-height: 260px; display: grid; grid-template-columns: 1fr 240px; align-items: center; gap: 60px; padding: 45px max(32px, calc((100vw - 1180px) / 2)); }
.contractor-hero h2 { font-size: 36px; margin: 10px 0; line-height: 1.1; }.contractor-hero p { color: #bbc7ce; max-width: 570px; font-size: 13px; line-height: 1.6; }
.contractor-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); padding: 22px; border-radius: 13px; }.contractor-stat span,.contractor-stat small { display: block; color: #b8c6ce; font-size: 10px; }.contractor-stat strong { display: block; color: #ff9368; font-size: 39px; margin: 7px 0; }
.contractor-body { padding-top: 25px; }
.filters { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; background: var(--paper); border: 1px solid var(--line); padding: 17px; border-radius: 11px; }.filters select { padding: 9px 11px; }
.jobs-layout { display: grid; grid-template-columns: 1fr 260px; gap: 18px; margin-top: 26px; }.section-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }.section-title h3 { margin: 0; }.section-title span { color: var(--green); background: var(--green-soft); padding: 6px 9px; border-radius: 20px; font-size: 9px; }
.jobs-list { display: grid; gap: 10px; }.job-card { background: var(--paper); border: 1px solid var(--line); padding: 19px; border-radius: 11px; }.job-top { display: flex; justify-content: space-between; gap: 10px; }.job-top h4 { margin: 0 0 6px; }.job-top p { margin: 0; color: var(--muted); font-size: 10px; }.fresh { color: var(--orange); background: var(--orange-soft); height: fit-content; padding: 5px 8px; border-radius: 20px; font-size: 8px; font-weight: 800; }.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }.job-tags span { color: var(--ink-2); background: #f0f3f5; padding: 5px 8px; border-radius: 6px; font-size: 8px; }.job-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 13px; }.job-bottom > div { display: flex; gap: 22px; }.job-bottom small { display: block; color: var(--muted); font-size: 8px; }.job-bottom b { font-size: 11px; }
.profile-card { background: var(--paper); border: 1px solid var(--line); padding: 24px; border-radius: 12px; text-align: center; height: fit-content; }.profile-avatar { width: 54px; height: 54px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 12px; background: var(--orange); color: white; font-weight: 900; }.profile-card h3 { margin: 0 0 6px; }.verified { color: var(--green); font-size: 9px; }.profile-score { display: flex; justify-content: center; align-items: center; gap: 12px; margin: 17px 0; }.profile-score b { font-size: 23px; }.profile-score span { color: #e79a21; font-size: 10px; }.profile-score small { color: var(--muted); }.profile-card hr { border: 0; border-top: 1px solid var(--line); }.profile-card p,.profile-card > small { color: var(--muted); font-size: 9px; line-height: 1.5; }.profile-progress { height: 5px; background: #e5e9eb; border-radius: 5px; overflow: hidden; }.profile-progress i { display: block; width: 78%; height: 100%; background: var(--orange); }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; background: rgba(13,29,42,.72); padding: 18px; backdrop-filter: blur(5px); }
.modal { width: min(620px,100%); max-height: 94vh; overflow-y: auto; background: var(--paper); padding: 30px; border-radius: 16px; box-shadow: var(--shadow); position: relative; }.modal h2 { margin: 10px 0 4px; }.modal > p { color: var(--muted); margin: 0 0 20px; font-size: 11px; }.modal-close { position: absolute; top: 15px; right: 17px; border: 0; background: none; font-size: 25px; color: var(--muted); }.input-suffix { position: absolute; right: 12px; bottom: 13px; color: var(--muted); }.offer-check { display: flex; gap: 9px; background: var(--green-soft); color: #3f6d5b; border-radius: 9px; padding: 12px; margin: 14px 0; font-size: 9px; line-height: 1.4; }.offer-check p { margin: 0; }
.toast { position: fixed; right: 25px; bottom: 25px; z-index: 150; display: flex; gap: 10px; align-items: center; background: var(--ink); color: white; padding: 14px 18px; border-radius: 10px; box-shadow: var(--shadow); font-size: 12px; }.toast > span { color: #74ddb0; font-size: 18px; }.toast p { margin: 0; }

footer { background: #0f202f; color: #8fa0ac; display: flex; justify-content: space-between; align-items: center; padding: 23px max(24px, calc((100vw - 1180px) / 2)); font-size: 9px; border-top: 1px solid #2a3d4d; }.footer-brand { color: white; font-size: 15px; }.footer-brand .brand-mark { width: 26px; height: 26px; font-size: 12px; border-radius: 7px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 45px; padding-top: 55px; }
  .estimate-card { max-width: 600px; }
  .hero-visual { max-width: 650px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .result-grid, .jobs-layout { grid-template-columns: 1fr; }
  .result-side { grid-template-columns: repeat(3,1fr); }
  .offer-card { grid-template-columns: 1fr 1fr 1fr; }.offer-card .company { grid-column: 1 / -1; }.offer-card button { grid-column: 1 / -1; }
  .profile-card { display: none; }
  .premium-band { grid-template-columns: 1fr; gap: 20px; }
  .offer-audit { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 640px) {
  .topbar { height: 64px; padding: 0 16px; }.topbar .outline { display: none; }.brand { font-size: 18px; }.brand-mark { width: 30px; height: 30px; }
  .screen { min-height: calc(100vh - 64px); }
  .hero { padding: 42px 19px 55px; }.hero-actions,.quick-check-row { grid-template-columns: 1fr; flex-direction: column; }.hero-actions button,.quick-check-row button { width: 100%; }.hero-copy > p { font-size: 16px; }.trust-row { flex-direction: column; gap: 8px; }
  .hero-visual { padding-top: 150px; }.hero-photo { left: 0; height: 225px; }.estimate-card { padding: 19px; }.estimate-bars > div { align-items: start; gap: 10px; }.estimate-bars b { text-align: right; }
  .steps-section { padding: 58px 19px; }.steps-grid { grid-template-columns: 1fr; }.steps-section h2 { font-size: 29px; }.benefits { grid-template-columns: 1fr; padding: 30px 24px; gap: 22px; }.benefits div { justify-content: start; border: 0; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 18px; }.benefits div:last-child { border: 0; padding: 0; }.premium-band { padding: 40px 19px; }.premium-band h2 { font-size: 26px; }
  .offer-audit { padding: 50px 19px; }.offer-audit-copy h2 { font-size: 29px; }.audit-form { padding: 21px; }
  .wizard-header { padding-inline: 16px; }.wizard-card { margin: 18px 12px 50px; padding: 29px 19px 22px; }.wizard-step { min-height: 470px; }.wizard-step h2 { font-size: 26px; }.form-grid.two,.form-grid.three,.form-grid.four,.scope-grid,.choice-cards,.budget-wrap,.own-product-panel,.product-url-row { grid-template-columns: 1fr; }.scope-grid { max-height: 520px; }.scope-option { grid-template-columns: 1fr 76px; }.scope-option.with-price { grid-template-columns: 1fr 65px 76px; }.choice-cards label > span { min-height: 105px; }.cost-columns { grid-template-columns: 1fr; }.total-card { grid-template-columns: 1fr; }.result-side { grid-template-columns: 1fr; }.result-shell,.dashboard-shell { padding: 32px 13px 60px; }.result-heading,.dashboard-header { align-items: start; gap: 15px; }.result-heading h2,.dashboard-header h2 { font-size: 29px; }.breakdown-row { grid-template-columns: 1fr 88px; }.breakdown-row small { display: none; }.premium-report-head,.report-document-head { align-items: start; }.report-preview { grid-template-columns: 1fr; }.report-price { text-align: left; }.premium-report-head { flex-direction: column; }.report-document-head { gap: 12px; }.report-document-head button { font-size: 10px; }.report-table { font-size: 8px; }.report-table th,.report-table td { padding: 7px 4px; }
  .project-summary { grid-template-columns: 1fr 1fr; gap: 21px; }.project-summary > div:first-child { grid-column: 1 / -1; }.offers-header { align-items: start; }.offers-header select { width: 150px; }.offer-card { grid-template-columns: 1fr 1fr; }.offer-card .company { grid-column: 1 / -1; }.offer-card button { grid-column: 1 / -1; }
  .contractor-hero { grid-template-columns: 1fr; gap: 20px; padding: 38px 19px; }.contractor-hero h2 { font-size: 31px; }.filters { grid-template-columns: 1fr; }.job-bottom { align-items: end; gap: 12px; }.job-bottom > div { gap: 10px; }.section-title span { display: none; }
  .modal { padding: 27px 18px; }.modal .form-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media print {
  body { background: var(--paper); }
  .topbar, footer, .result-heading, .result-main > :not(#premium-report), .result-side, #premium-report-card { display: none !important; }
  #result-screen, #premium-report, .result-shell, .result-grid, .result-main { display: block !important; min-height: 0; padding: 0; margin: 0; border: 0; }
  .report-document-head button { display: none; }
  .report-section { break-inside: avoid; }
}

/* Darmowy wynik — wspólny język wizualny z raportem. */
.free-promise { border-left:3px solid var(--orange); padding:4px 0 4px 15px; margin:24px 0; }
.free-promise b,.free-promise span { display:block; }
.free-promise b { font-size:15px; margin-bottom:6px; }
.free-promise span { color:var(--muted); font-size:12px; line-height:1.6; }
.free-verdict { display:grid; grid-template-columns:1.4fr 1fr; gap:38px; padding:36px; margin:0 0 22px; border-radius:22px; color:white; background:radial-gradient(ellipse at top right,#315e60,transparent 65%),#122b3a; box-shadow:0 18px 45px #122b3a20; animation:result-reveal .5s ease-out; }
.free-verdict[data-status=high] { background:radial-gradient(ellipse at top right,#854b37,transparent 65%),#192c37; }
.free-verdict h2 { font-size:clamp(25px,3vw,38px); line-height:1.13; margin:14px 0; max-width:620px; letter-spacing:-.035em; }
.free-verdict p { font-size:13px; line-height:1.7; color:#dae4e7; }
.verdict-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.verdict-tags span { border:1px solid #ffffff35; border-radius:24px; padding:7px 11px; font-size:11px; }
.saving-tile { padding:24px; background:#ffffff0d; border:1px solid #ffffff28; border-radius:15px; }
.saving-tile small { display:block; color:#e1e8e9; font-size:12px; }
.saving-tile strong { display:block; font-size:clamp(28px,3.5vw,46px); letter-spacing:-.04em; color:#a8efc7; margin:13px 0; }
.free-verdict[data-status=high] .saving-tile strong { color:#ffb392; }
.insight-link { color:#fff; font-size:12px; text-underline-offset:4px; }
.flags-card { padding:28px; margin-bottom:26px; border:1px solid var(--line); background: var(--paper); border-radius:17px; scroll-margin-top:25px; }
.flags-heading { display:flex; align-items:center; justify-content:space-between; gap:18px; }
.flags-heading h3 { font-size:23px; margin:8px 0; }
.flags-heading>span { background:#f1f4f5; border-radius:20px; padding:9px 13px; font-size:11px; white-space:nowrap; }
.flags-card>p { font-size:12px; line-height:1.6; color:var(--muted); }
.flag-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:20px; }
.flag-item { padding:18px; border-radius:10px; background:#fffbf2; border-left:3px solid #c89434; }
.flag-item.red { background:#fff4f1; border-color:#c94e35; }
.flag-item.missing { background:#f2f5f7; border-color:#7e8c97; }
.flag-item.clear { background:#eff9f3; border-color:#248354; }
.flag-item>span { font-size:9px; font-weight:800; letter-spacing:.07em; color:#715421; }
.flag-item.red>span { color:#a13023; }
.flag-item.missing>span { color:#4a6173; }
.flag-item h4 { margin:8px 0; font-size:14px; }
.flag-item p { font-size:12px; line-height:1.65; margin:0; color:#52636e; }
.premium-context { color:#425b6d; background:#eef4f5; padding:14px; border-radius:10px; font-size:12px; line-height:1.6; }
#confidence { max-width:360px; line-height:1.6; }
.result-main,.result-side { min-width:0; }
#report-scope,#report-comparison,#report-shopping { overflow-x:auto; }
@keyframes result-reveal { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@media(max-width:640px) { .free-verdict { grid-template-columns:1fr; padding:24px 20px; gap:19px; border-radius:16px; } .saving-tile { padding:20px; } .flag-list { grid-template-columns:1fr; } .flags-card { padding:20px; } .flags-heading { align-items:flex-start; flex-direction:column; gap:8px; } }
@media(prefers-reduced-motion:reduce) { *,*::before,*::after { animation:none!important; transition:none!important; scroll-behavior:auto!important; } }
@media print { .free-verdict,.flags-card,.modal-backdrop,.toast { display:none!important; } #report-scope,#report-comparison,#report-shopping { overflow:visible; } .report-table { width:100%; } }

/* Raport decyzji remontowej, wersja 2. */
.rr-sample-link { display:block; margin:18px 0; color:#b54725; font-size:13px; font-weight:700; text-underline-offset:4px; }
.rr-brand { font-size:24px; letter-spacing:-1px; color:#132c3a; }.rr-brand span { color:#cf5937; }
.rr-mode { padding:10px 26px; background:#fff3e6; color:#7c4e21; font-size:10px; font-weight:800; letter-spacing:.07em; }
.rr-project { padding:26px; }.rr-project h2 { font-size:25px; margin:0 0 10px; }.rr-project p { font-size:12px; line-height:1.6; color:#526470; margin:5px 0; }
.rr-metrics { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin:24px 0; }
.rr-metrics>div { padding:15px 12px; background:#ffffff0c; border:1px solid #ffffff30; border-radius:9px; }
.rr-metrics small { display:block; font-size:10px; }.rr-metrics b { display:block; margin-top:10px; font-size:19px; line-height:1.45; }
.rr-method { font-size:11px; }.rr-status-high .rr-metrics>div:last-child b { color:#ffbd9d; }
.rr-actions { list-style:none; padding:0!important; counter-reset:action; }.rr-actions li { display:grid; grid-template-columns:30px 1fr; column-gap:12px; padding:12px 0; border-bottom:1px solid #e4e9eb; counter-increment:action; }.rr-actions li::before { content:counter(action); grid-row:span 2; color:#ae4828; background:#fff1e9; width:27px; height:27px; border-radius:50%; text-align:center; line-height:27px; font-weight:bold; }.rr-actions b { font-size:13px; }.rr-actions span { font-size:12px; margin-top:4px; }
.rr-table-wrap { overflow-x:auto; }.rr-table-wrap .report-table { font-size:11px; }.rr-table-wrap .report-table thead th { text-transform:uppercase; font-size:9px; background:#f4f7f8; }.rr-table-wrap .report-table tbody th { color:#263f50; font-size:11px; font-weight:600; }.rr-table-wrap .report-table th small { display:block; font-size:10px; color:#647581; font-weight:normal; margin-top:5px; }.rr-table-wrap .report-table td { vertical-align:top; }.rr-note { font-size:11px; line-height:1.7; color:#586e7c; }.rr-budget { margin-top:18px; padding:17px; border-left:3px solid #b7cbd2; background:#f5f8f9; font-size:12px; line-height:1.7; }.rr-budget p { margin:5px 0; }
.rr-risks { display:grid; gap:10px; }.rr-risk { border-left:3px solid #c39a52; border-radius:0 9px 9px 0; padding:15px; background:#fffcf4; }.rr-risk.red { border-color:#c76148; background:#fff5f2; }.rr-risk.missing { border-color:#8a9ba6; background:#f3f6f8; }.rr-risk small { font-size:9px; letter-spacing:.08em; color:#52616c; }.rr-risk h4 { margin:7px 0; font-size:13px; }.rr-risk p { margin:0; font-size:12px; line-height:1.65; }
.rr-message { display:block; width:100%; min-height:430px; padding:18px; margin-top:16px; resize:vertical; font-family:inherit;font-size:12px; line-height:1.7; border:1px solid #d6e0e4; background:#f9fbfc; }.rr-print-message { display:none; }.rr-copy-status { font-size:11px; margin-left:12px; color:#456b56; }.rr-checklist { list-style:none; padding:0!important; }.rr-checklist li { border-bottom:1px solid #e5eaec; padding:8px 0; }.report-section>p { font-size:12px; line-height:1.65; }
.rr-sample-page { background:#ecf1f3; }.rr-sample-nav { max-width:970px; margin:auto; padding:24px 20px; display:flex; justify-content:space-between; gap:14px; font-size:12px; }.rr-sample-nav a { color:#244858; }.rr-sample-shell { max-width:930px; margin:0 auto 50px; }.rr-sample-shell .premium-report { margin:0; box-shadow:0 15px 55px #16334312; }
@media(max-width:640px) { .rr-metrics { grid-template-columns:1fr; gap:9px; }.rr-metrics>div { display:flex; align-items:center; justify-content:space-between; gap:12px; }.rr-metrics b { margin:0; font-size:18px; }.rr-sample-nav { flex-direction:column; }.rr-sample-shell { margin:0 10px 30px; }.rr-project,.report-section,.report-hero,.report-document-head { padding:20px; }.rr-table-wrap .report-table { min-width:490px; }.rr-message { min-height:500px; }.rr-copy-status { display:block; margin:8px 0; } }
@media print {
  @page { size:A4; margin:15mm 13mm 16mm; }
  html,body { width:auto!important; background:#fff!important; font-size:10pt; }
  body * { -webkit-print-color-adjust:exact; print-color-adjust:exact; }
  .rr-sample-nav,[data-report-print],[data-report-copy],.rr-copy-status,.rr-message { display:none!important; }
  .rr-print-message { display:block; white-space:pre-wrap; font-size:10pt; line-height:1.5; }
  .rr-sample-shell { max-width:none; margin:0; }
  .premium-report { box-shadow:none!important; border-radius:0!important; }
  .report-section { break-inside:auto; padding:16px 0; }
  .report-section h3 { break-after:avoid; font-size:12pt; }
  .report-table thead { display:table-header-group; }
  .report-table tr,.rr-risk,.rr-actions li,.rr-checklist li { break-inside:avoid; }
  .rr-table-wrap { overflow:visible; }.rr-table-wrap .report-table { min-width:0; font-size:9pt; }
  .rr-table-wrap .report-table th,.rr-table-wrap .report-table td { padding:7px 5px; font-size:9pt; }
  .rr-table-wrap .report-table th small { font-size:8pt; }
  .rr-project,.report-document-head { padding:12px 0; }
  .rr-metrics { grid-template-columns:repeat(3,minmax(0,1fr)); }.rr-metrics>div { display:block; }.rr-metrics b { margin-top:6px; font-size:14pt; }
  .report-hero,.rr-budget { break-inside:avoid; }
  .rr-risk { margin-bottom:9px; }.rr-risks { display:block; }
  .report-footer-note { padding:15px 0; background: var(--paper); font-size:8pt; }
}
.shopping-config { margin-top:18px; }.shopping-config>p { font-size:12px; line-height:1.65; color:#506574; }.shopping-config h3 { margin:8px 0; }
.shop-item,.shop-new { padding:15px; margin:12px 0; border:1px solid #dce5e9; border-radius:10px; background:#fbfcfd; }.shop-item summary { cursor:pointer; font-size:14px; font-weight:700; }.shop-item summary span { display:block; font-weight:400; font-size:12px; color:#516c79; margin-top:6px; }.shop-fields { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin:15px 0; }.shop-fields label:first-child { grid-column:1/-1; }.shop-fields label,.shop-item>label { font-size:11px; }.shop-enabled { display:flex; gap:9px; align-items:center; margin:14px 0; }.shop-enabled input { width:auto; }.shop-buttons { display:flex; gap:15px; align-items:center; margin-top:12px; font-size:12px; }[data-shopping-summary] { margin-top:20px; font-size:12px; line-height:1.6; }[data-shopping-summary] .report-table { min-width:580px; }[data-pending] { background:#fff4e8; padding:0 12px; font-size:12px; line-height:1.6; }[data-pending]:not(:empty) { padding:12px; margin:12px 0; }
@media(max-width:640px) { .shop-fields { grid-template-columns:1fr 1fr; }.shop-buttons { flex-wrap:wrap; }.shopping-config { padding:17px; } }
@media print { #shopping-config { display:none!important; } }

/* Moja wycena: zapisany wynik bez pośrednictwa wykonawców. */
.my-estimate-nav { display:none; }
.my-estimate-actions { display:flex; flex-wrap:wrap; gap:12px; margin:24px 0; }
.saved-scope-list { background: var(--paper); border:1px solid var(--line); border-radius:12px; overflow:hidden; }
.saved-scope-row { display:flex; justify-content:space-between; gap:18px; padding:15px 20px; border-bottom:1px solid var(--line); }
.saved-scope-row:last-child { border-bottom:0; }
.saved-scope-row b { white-space:nowrap; }
@media(max-width:1000px) { .topbar .my-estimate-nav { display:inline-flex; } }
@media(max-width:600px) { .my-estimate-nav { font-size:12px; padding:9px 12px; } .saved-scope-row { padding:12px; font-size:13px; } }

.report-packages { max-width:1180px; margin:64px auto; padding:0 24px; scroll-margin-top:95px; }
.report-packages h2 { font-size:clamp(28px,4vw,40px); margin:12px 0; }
.package-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; margin:30px 0; }
.package-card { display:flex; flex-direction:column; background: var(--paper); border:1px solid var(--line); border-radius:18px; padding:28px; }
.package-card.featured { border:2px solid var(--orange); }
.package-card h3 { font-size:23px; margin:12px 0; }
.package-price { font-size:48px; font-weight:800; color:var(--ink); }.package-price small { font-size:22px; }
.package-card ul { padding-left:20px; line-height:1.65; }.package-card li { margin:8px 0; }
.package-card p { line-height:1.6; }.package-limit { font-size:12px; color:var(--ink-2); margin-top:auto; }
.package-card button { margin-top:16px; }.price-policy { background: var(--paper); border-radius:14px; padding:24px; border:1px solid var(--line); line-height:1.7; }
.report-upgrades { display:grid; gap:10px; margin-top:18px; }#request-error { color:#ae301c; }#analiza-oferty { scroll-margin-top:95px; }
.price-age { color:#935000; font-weight:600; }.shop-refresh-all { margin:14px 0; }
@media(max-width:1000px) { .package-grid { grid-template-columns:1fr; }.package-card { padding:24px; }.report-packages { margin:40px auto; padding:0 16px; } }

#przeslij-wycene { scroll-margin-top:95px; }
.contact-email,.footer-contact { color:var(--orange); font-weight:700; overflow-wrap:anywhere; }
.quote-file-box { padding:20px; border:2px dashed #ffc0a0; background:#fff9f5; border-radius:12px; }
.quote-file-box input { width:100%; max-width:100%; margin:12px 0; padding:8px; }
.file-status { font-size:13px; overflow-wrap:anywhere; }#quote-upload-error { color:#ae301c; }
.retention-bubble { position:fixed; right:24px; bottom:24px; z-index:70; width:350px; max-width:calc(100vw - 32px); padding:28px 24px 22px; background: var(--paper); color:var(--ink); border:1px solid #ffc4a6; border-top:4px solid var(--orange); border-radius:18px; box-shadow:0 12px 50px #172c3830; max-height:calc(100dvh - 100px); overflow:auto; }
.retention-bubble h2 { font-size:24px; margin:12px 15px 12px 0; }.retention-bubble p { font-size:14px; line-height:1.6; }.retention-bubble small { display:block; font-size:12px; margin:12px 0; line-height:1.5; }.retention-bubble>a { color:var(--orange); font-size:13px; }
.retention-close { position:absolute; top:7px; right:7px; width:36px; height:36px; border:0; border-radius:50%; background:#f3f5f6; color:var(--ink); font-size:24px; cursor:pointer; }
@media(max-width:600px){.retention-bubble{right:16px;bottom:16px;width:calc(100vw - 32px);padding:24px 20px 18px;}.retention-bubble h2{font-size:22px;}footer .footer-contact{font-size:13px;}}
@media print{.retention-bubble{display:none!important;}}

.nav-contact { color:var(--ink-2); text-decoration:none; font-size:14px; font-weight:650; align-self:center; }.nav-contact:hover { color:var(--orange); }
.seller-details { max-width:1180px; margin:0 auto; padding:18px 24px 30px; font-size:12px; line-height:1.8; border-top:1px solid var(--line); color:var(--ink-2); overflow-wrap:anywhere; }.seller-details a { color:var(--ink); text-decoration:underline; }.seller-details p { margin:6px 0; }
.contact-page { max-width:1000px; margin:60px auto; padding:0 24px; }.contact-page h1 { font-size:clamp(28px,4vw,40px); margin:14px 0; }.contact-actions { display:flex; flex-wrap:wrap; gap:14px; margin:30px 0; }.contact-actions a { text-decoration:none; overflow-wrap:anywhere; }
.company-card { border:1px solid var(--line); border-radius:16px; padding:28px; background: var(--paper); }.company-card dl { display:grid; grid-template-columns:180px 1fr; gap:16px 24px; }.company-card dt { font-weight:700; }.company-card dd { margin:0; overflow-wrap:anywhere; }.company-card a { color:var(--ink); }.seller-checkout { font-size:12px; }
@media(max-width:600px) { .company-card dl { grid-template-columns:1fr; gap:8px; }.company-card dd { margin-bottom:12px; }.company-card { padding:20px; }.contact-page { margin:36px auto; padding:0 16px; }.contact-actions a { font-size:14px; } }
@media print { .seller-details { font-size:9px; } }

.energy-details { margin:20px 0; padding:22px; background:#f4f7f8; border:1px solid var(--line); border-radius:14px; }.energy-details p { font-size:13px; line-height:1.65; }.energy-details>.form-grid { margin-bottom:18px; }
.scope-option.technical-item { grid-column:1/-1; }.device-fields { grid-column:1/-1; display:grid; grid-template-columns:1fr 1fr; gap:12px; border-top:1px solid var(--line); padding-top:12px; }.device-fields label,.quoted-service { font-size:12px; }.device-model { grid-column:1/-1; }.device-fields input,.device-fields select { width:100%;min-width:0; }.quoted-service {grid-column:1/-1;}
@media(max-width:600px){.device-fields{grid-template-columns:1fr;}.energy-details{padding:16px;}}
