@page { size: A4; margin: 0 }
:root {
  --blue: #299DD8;
  --blue-600: #1F86BF;
  --blue-deep: #0E4A72;
  --ink: #14293A;
  --muted: #5B6C7A;
  --green: #2A9948;
  --green-deep: #1F7A38;
  --tint: #EDF6FC;
  --tint-2: #F6FAFD;
  --line: #DCE8F1;
  --stage: #E6ECF1;
}
* { box-sizing: border-box; margin: 0; padding: 0 }
html, body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); -webkit-print-color-adjust: exact; print-color-adjust: exact }
body { background: var(--stage) }
svg.i { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none }

/* =====================================================================
   App shell (editor + preview)
   ===================================================================== */
.app { display: grid; grid-template-columns: 400px 1fr; height: 100vh }
.editor { background: #fff; border-right: 1px solid var(--line); display: flex; flex-direction: column; min-height: 0 }
.ed-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px 12px }
.ed-head img { height: 30px }
.ed-head .t { margin-left: auto; text-align: right }
.ed-head .t b { display: block; font-size: 14px; color: var(--blue-deep) }
.ed-head .t span { font-size: 11px; color: var(--muted) }
.ed-actions { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; padding: 0 20px 14px; border-bottom: 1px solid var(--line) }
.ed-body { overflow-y: auto; padding: 6px 20px 40px; min-height: 0 }
.grp { padding: 16px 0 6px; border-bottom: 1px solid var(--line) }
.grp:last-child { border-bottom: 0 }
.grp h3 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 10px }
.fld { display: block; margin-bottom: 10px }
.fld > span { display: block; font-size: 12px; font-weight: 600; color: #34495A; margin-bottom: 5px }
.fld small { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.45 }
.fld input:not([type=checkbox]), .fld textarea { width: 100%; font: inherit; font-size: 13px; color: var(--ink); border: 1px solid #CFDCE6; border-radius: 8px; padding: 8px 10px; background: #fff; outline: none; transition: border-color .15s, box-shadow .15s }
.fld textarea { resize: vertical; line-height: 1.45 }
.fld input:focus, .fld textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,157,216,.18) }
.fld.check { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; font-size: 12.5px; color: #34495A; line-height: 1.4 }
.fld.check input { width: 16px; height: 16px; accent-color: var(--blue); margin-top: 1px; flex: none }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 10px }
.row2 .fld.check { align-self: center; margin-top: 12px }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font: inherit; font-size: 13px; font-weight: 600; height: 38px; padding: 0 14px; border-radius: 9px; border: 1px solid #CFDCE6; background: #fff; color: var(--blue-deep); cursor: pointer; white-space: nowrap; transition: background .15s, border-color .15s }
.btn:hover { background: var(--tint-2); border-color: #B7CCDB }
.btn.primary { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff }
.btn.primary:hover { background: #0B3D5E }
.btn.icon { width: 38px; padding: 0 }
.btn.dashed { width: 100%; border-style: dashed; margin: 2px 0 14px; color: var(--blue) }
.item { border: 1px solid var(--line); border-radius: 12px; padding: 12px 12px 4px; margin-bottom: 10px; background: var(--tint-2) }
.item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px }
.item-head b { font-size: 12px; color: var(--blue-deep) }
.item-head button { border: 0; background: none; color: var(--muted); cursor: pointer; width: 26px; height: 26px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center }
.item-head button:hover { background: #fff; color: #C0392B }
.ed-sum { background: var(--tint); border-radius: 10px; padding: 10px 14px; margin: 4px 0 12px; font-size: 12.5px }
.ed-sum div { display: flex; justify-content: space-between; padding: 3px 0; color: var(--muted) }
.ed-sum div b { color: var(--ink); font-variant-numeric: tabular-nums }
.ed-sum .g { color: var(--ink); font-weight: 700; border-top: 1px solid #CFE2EE; margin-top: 4px; padding-top: 7px }
.ed-sum .g b { color: var(--green-deep); font-size: 14px }
.ed-sum p { font-size: 11.5px; font-style: italic; color: var(--muted); margin-top: 4px }

.stage { overflow: auto; padding: 32px; min-height: 0; position: relative }
.scale-box { margin: 0 auto; position: relative }
.scaler { width: 210mm; transform-origin: 0 0; position: absolute; left: 0; top: 0 }
.pages { display: flex; flex-direction: column; gap: 28px }
.pages .page { box-shadow: 0 1px 2px rgba(14,74,114,.08), 0 12px 32px rgba(14,74,114,.12) }

.viewbar { display: none }
.app.view { grid-template-columns: 1fr }
.app.view .editor { display: none }
.app.view .viewbar { display: flex; align-items: center; gap: 14px; position: sticky; top: -32px; z-index: 5; margin: -32px -32px 28px; padding: 12px 24px; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(6px) }
.viewbar img { height: 28px }
.viewbar span { font-size: 13px; color: var(--muted) }
.viewbar .btn { margin-left: auto }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; font-size: 13px; padding: 10px 16px; border-radius: 10px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 20 }
.toast.on { opacity: 1; transform: translate(-50%, 0) }

@media (max-width: 900px) {
  .app { grid-template-columns: 1fr; height: auto }
  .editor { border-right: 0; border-bottom: 1px solid var(--line) }
  .ed-body { overflow: visible }
  .stage { padding: 16px; overflow: hidden }
  .app.view .viewbar { top: 0; margin: -16px -16px 16px; padding: 10px 16px }
}

/* =====================================================================
   Printed document
   ===================================================================== */
.page { width: 210mm; height: 297mm; position: relative; overflow: hidden; break-after: page; page-break-after: always; background: #fff }
.page:last-child { break-after: auto; page-break-after: auto }

/* ---------- Cover ---------- */
.cover { background: linear-gradient(160deg, #34A9E3 0%, #299DD8 42%, #1F8CC8 100%); color: #fff }
.cover-art { position: absolute; inset: 0; width: 100%; height: 100% }
.cover-top { position: absolute; top: 62px; left: 72px; right: 72px; display: flex; justify-content: space-between; align-items: flex-start }
.cover-top img { width: 236px; display: block }
.docno { text-align: right; padding-top: 6px }
.docno span { display: block; font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; opacity: .82 }
.docno b { display: block; font-size: 13px; letter-spacing: .08em; margin-top: 5px; font-weight: 700 }
.cover-title { position: absolute; left: 72px; top: 292px; width: 560px }
.cover-title .kicker { font-size: 12.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; opacity: .92 }
.cover-title h1 { font-size: 124px; font-weight: 800; line-height: 1.02; letter-spacing: -.035em; margin-top: 22px }
.cover-title .bar { width: 104px; height: 6px; background: #fff; margin: 30px 0 26px; border-radius: 3px; position: relative }
.cover-title .bar::after { content: ''; position: absolute; left: 112px; top: 0; width: 28px; height: 6px; border-radius: 3px; background: var(--green) }
.cover-title .model { font-size: 32px; font-weight: 700; letter-spacing: -.01em }
.cover-card { position: absolute; left: 72px; right: 72px; bottom: 112px; border: 1px solid rgba(255,255,255,.42); border-radius: 18px; background: rgba(6, 52, 88, .34); padding: 30px 34px; display: grid; grid-template-columns: .9fr 1.5fr; gap: 26px }
.cover-card .lbl { font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; opacity: .85 }
.cover-card .name { font-size: 44px; font-weight: 800; letter-spacing: -.02em; margin-top: 10px; line-height: 1.05; overflow-wrap: anywhere }
.cover-card .phone { font-size: 14px; margin-top: 12px; opacity: .92 }
.cover-card .phone b { font-weight: 700 }
.facts { display: grid; grid-template-columns: 112px 1fr; row-gap: 11px; column-gap: 14px; font-size: 13px; align-content: center }
.facts dt { font-size: 11px; font-weight: 600; opacity: .8; padding-top: 2px }
.facts dd { font-weight: 500; line-height: 1.4 }
.facts dd .more { opacity: .8; font-size: 12px }
.cover-foot { position: absolute; left: 72px; right: 72px; bottom: 50px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: .06em }
.cover-foot .links { display: flex; gap: 12px; opacity: .88 }
.cover-foot .links i { width: 1px; height: 11px; background: rgba(255,255,255,.55); display: inline-block; align-self: center }
.cover-foot .pg { opacity: .88 }
.cover-foot .pg b { font-weight: 700 }

/* ---------- Inner-page chrome ---------- */
.sheet { padding: 42px 60px 0 }
.doc-head { display: flex; justify-content: space-between; align-items: center }
.doc-head .logo { height: 44px; display: block }
.doc-head .co { text-align: right; font-size: 9.5px; color: var(--muted); line-height: 1.6 }
.doc-head .co b { display: block; font-size: 11px; color: var(--blue-deep); letter-spacing: .03em; font-weight: 700 }
.doc-head.slim .logo { height: 34px }
.doc-head.slim .tag { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600 }
.brand-rule { height: 3px; margin-top: 14px; border-radius: 2px; background: linear-gradient(90deg, var(--blue) 0 72%, #fff 72% 72.6%, var(--green) 72.6% 100%) }
.page-foot { position: absolute; left: 60px; right: 60px; bottom: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 9.5px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 10px }
.page-foot b { color: var(--blue-deep); font-weight: 700 }
.sec { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-deep); display: flex; align-items: center; gap: 12px }
.sec::after { content: ''; flex: 1; height: 1px; background: var(--line) }

/* ---------- Quotation ---------- */
.q-title { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 26px }
.q-title h1 { font-size: 38px; font-weight: 800; letter-spacing: -.02em; color: var(--blue-deep); line-height: 1.1 }
.q-title p { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 500 }
.q-meta { display: grid; grid-template-columns: auto auto; column-gap: 14px; row-gap: 5px; font-size: 11.5px; text-align: right; padding-left: 18px; border-left: 3px solid var(--blue); flex: none }
.q-meta span { color: var(--muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; padding-top: 1px; text-align: left }
.q-meta b { font-weight: 700; color: var(--ink) }
.to-card { margin-top: 22px; background: var(--tint); border-radius: 12px; padding: 14px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; overflow: hidden }
.to-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--blue) }
.to-card span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 600 }
.to-card b { display: block; font-size: 16px; font-weight: 700; margin-top: 3px; color: var(--ink) }
.lead { font-size: 12px; line-height: 1.6; margin-top: 16px; color: var(--ink) }
.tbl { margin-top: 20px }
.tbl.cont { margin-top: 26px }
table.items { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 12px; font-size: 11.5px }
table.items th small { display: block; font-size: 9px; font-weight: 500; opacity: .75; letter-spacing: .06em; margin-top: 2px }
table.items th { background: var(--blue-deep); color: #fff; font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; padding: 10px 9px; vertical-align: middle; white-space: nowrap; text-align: center; line-height: 1.35 }
table.items th:first-child { border-radius: 10px 0 0 0 }
table.items th:last-child { border-radius: 0 10px 0 0 }
table.items th.l, table.items td.l { text-align: left }
table.items th.r, table.items td.r { text-align: right }
table.items td { padding: 14px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; text-align: center }
table.items td.r { font-variant-numeric: tabular-nums; white-space: nowrap }
table.items td:first-child { border-left: 1px solid var(--line); color: var(--muted); font-weight: 600 }
table.items td:last-child { border-right: 1px solid var(--line) }
table.items tbody tr:last-child td:first-child { border-radius: 0 0 0 10px }
table.items tbody tr:last-child td:last-child { border-radius: 0 0 10px 0 }
.prod { display: flex; align-items: center; gap: 14px; text-align: left }
.prod .thumb { width: 50px; height: 70px; border-radius: 8px; background: var(--tint-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex: none; overflow: hidden }
.prod .thumb img { height: 64px; mix-blend-mode: multiply }
.prod b { font-size: 12.5px; font-weight: 700; line-height: 1.35; display: block }
.prod ul { list-style: none; display: flex; flex-wrap: wrap; column-gap: 14px; row-gap: 3px; margin-top: 7px }
.prod li { white-space: nowrap; display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted) }
.prod li svg { width: 13px; height: 13px; color: var(--green); stroke-width: 2.6 }
.sum-row { display: grid; grid-template-columns: 1fr 300px; gap: 22px; margin-top: 16px; align-items: end }
.in-words { font-size: 11.5px; color: var(--muted); padding-bottom: 4px }
.in-words span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 600 }
.in-words b { display: block; margin-top: 4px; font-size: 13px; font-style: italic; color: var(--ink); font-weight: 600 }
.totals > div { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 14px; font-size: 12px }
.totals > div span { color: var(--muted) }
.totals > div b { font-weight: 600; font-variant-numeric: tabular-nums }
.totals .grand { margin-top: 6px; background: var(--green); color: #fff; border-radius: 10px; padding: 12px 16px; align-items: center }
.totals .grand span { color: #fff; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .1em }
.totals .grand b { font-size: 22px; font-weight: 800; letter-spacing: -.01em }
.totals .grand small { font-size: 11px; font-weight: 600; opacity: .9; margin-left: 2px }
.terms { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px }
.terms h4 { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--blue-deep) }
.terms h4 svg { color: var(--blue); width: 15px; height: 15px }
.terms .card { border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; display: flex; flex-direction: column; justify-content: center }
.terms .card p { font-size: 12.5px; font-weight: 500; line-height: 1.62; margin: 6px 0 0 23px }
.terms .card .gap { height: 1px; background: var(--line); margin: 18px 0 16px }
.bank { border-radius: 12px; padding: 16px 20px; color: #fff; position: relative; overflow: hidden; background: linear-gradient(145deg, var(--blue) 0%, var(--blue-600) 55%, var(--blue-deep) 100%) }
.bank .deco { position: absolute; right: -60px; bottom: -70px; width: 230px; height: 230px }
.bank h4 { color: #fff; position: relative }
.bank h4 svg { color: #fff }
.bank .row { position: relative; margin-top: 11px }
.bank .row span { display: block; font-size: 9.5px; text-transform: uppercase; letter-spacing: .14em; opacity: .82; font-weight: 600 }
.bank .row b { display: block; font-size: 12px; font-weight: 700; margin-top: 2px; line-height: 1.4 }
.bank .row.acct b { font-size: 21px; letter-spacing: .06em; font-weight: 800; font-variant-numeric: tabular-nums }
.sign { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 26px; text-align: center }
.sign b { font-size: 12px; font-weight: 700; color: var(--blue-deep); text-transform: uppercase; letter-spacing: .08em }
.sign .space { height: 86px }
.sign .name { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; padding-top: 8px; border-top: 1px dashed #B9CCDA; margin: 0 40px; min-height: 26px }

/* ---------- Product ---------- */
.hero { display: grid; grid-template-columns: 290px 1fr; gap: 30px; margin-top: 24px; align-items: stretch }
.hero-visual { position: relative; border-radius: 18px; overflow: hidden; height: 420px; background: radial-gradient(120% 90% at 50% 38%, #FFFFFF 0%, var(--tint) 58%, #D9ECF8 100%) }
.hero-visual svg.rings { position: absolute; inset: 0; width: 100%; height: 100% }
.hero-visual img { position: absolute; left: 50%; top: 30px; height: 370px; transform: translateX(-50%); mix-blend-mode: multiply }
.hero-visual .badge { position: absolute; left: 14px; top: 14px; font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-deep); background: #fff; border-radius: 999px; padding: 5px 10px; box-shadow: 0 1px 2px rgba(14,74,114,.12) }
.hero-info { display: flex; flex-direction: column; justify-content: center; padding: 4px 0 }
.eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue) }
.hero-info h2 { font-size: 34px; font-weight: 800; letter-spacing: -.025em; color: var(--blue-deep); line-height: 1.1; margin-top: 8px }
.perks { list-style: none; margin-top: 24px; display: grid; gap: 16px }
.perks li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; font-size: 11.5px; line-height: 1.58 }
.perks .ic { width: 30px; height: 30px; border-radius: 9px; background: var(--tint); color: var(--blue); display: flex; align-items: center; justify-content: center }
.perks .ic svg { width: 16px; height: 16px }
.perks li b { display: block; font-size: 12px; color: var(--blue-deep); font-weight: 700 }
.stats { margin-top: 22px; display: grid; grid-template-columns: 1.3fr 1.2fr .85fr .75fr; border-radius: 14px; background: var(--blue-deep); color: #fff; overflow: hidden }
.stats > div { padding: 15px 16px 14px; position: relative }
.stats > div + div::before { content: ''; position: absolute; left: 0; top: 16px; bottom: 16px; width: 1px; background: rgba(255,255,255,.18) }
.stats b { display: block; font-size: 21px; font-weight: 800; letter-spacing: -.02em }
.stats b small { font-size: 12px; font-weight: 700; margin-left: 2px; opacity: .9 }
.stats span { display: block; font-size: 10px; opacity: .78; margin-top: 4px; line-height: 1.4 }
.filters-head { margin-top: 24px; display: flex; justify-content: space-between; align-items: baseline }
.filters-head h3 { font-size: 18px; font-weight: 800; color: var(--blue-deep); letter-spacing: -.01em }
.filters-head p { font-size: 11px; color: var(--muted) }
.filters-head p b { color: var(--ink); font-weight: 600 }
.filters { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px }
.filter { border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start }
.filter .n { width: 34px; height: 34px; border-radius: 10px; background: var(--tint); color: var(--blue-deep); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center }
.filter h5 { font-size: 12px; font-weight: 700; color: var(--ink); line-height: 1.3 }
.filter h5 em { font-style: normal; color: var(--blue); font-weight: 600 }
.filter p { font-size: 10.8px; line-height: 1.55; color: #3A4C5B; margin-top: 4px }
.filter.core { background: linear-gradient(150deg, #F2FAF4 0%, #fff 70%); border-color: #BFE3C9 }
.filter.core .n { background: var(--green); color: #fff }
.filter.core h5 em { color: var(--green-deep) }
.note { margin-top: 12px; display: grid; grid-template-columns: 18px 1fr; gap: 10px; padding: 11px 15px; border-radius: 10px; background: #FFF8E8; border: 1px solid #F2DDA6; font-size: 10.8px; line-height: 1.55; color: #5A4513 }
.note svg { color: #C98A06; width: 17px; height: 17px; margin-top: 1px }

/* ---------- Specs ---------- */
.spec-title { margin-top: 24px; display: flex; justify-content: space-between; align-items: flex-end }
.spec-title h2 { font-size: 28px; font-weight: 800; color: var(--blue-deep); letter-spacing: -.02em }
.spec-title p { font-size: 11px; color: var(--muted) }
.spec { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 14px }
.spec h4 { display: flex; align-items: center; gap: 8px; background: var(--blue-deep); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 9px 14px }
.spec h4 i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block }
.spec dl { display: grid; grid-template-columns: 158px 1fr }
.spec.narrow dl { grid-template-columns: 116px 1fr }
.spec dt, .spec dd { padding: 8px 14px; font-size: 11px; line-height: 1.55; border-top: 1px solid var(--line) }
.spec dt { font-weight: 600; color: var(--blue-deep); background: var(--tint-2) }
.spec dl > :nth-child(1), .spec dl > :nth-child(2) { border-top: 0 }
.chips { display: flex; flex-wrap: wrap; gap: 6px }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 2px 9px; border-radius: 999px; background: var(--tint); font-size: 10.5px; font-weight: 500; color: var(--ink) }
.chip.outline { background: #fff; border: 1px solid var(--line) }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; margin-top: 14px }
.spec-grid .col { display: grid; gap: 14px }
.spec-grid .spec { margin-top: 0 }
.contact { position: absolute; left: 60px; right: 60px; bottom: 70px; border-radius: 16px; overflow: hidden; color: #fff; padding: 22px 26px; background: linear-gradient(140deg, var(--blue) 0%, var(--blue-600) 50%, var(--blue-deep) 100%); display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center }
.contact .deco { position: absolute; right: -40px; top: -90px; width: 300px; height: 300px }
.contact img { height: 34px; display: block; position: relative }
.contact p { font-size: 11px; margin-top: 10px; opacity: .9; position: relative; line-height: 1.55 }
.contact .lines { position: relative; display: grid; gap: 8px; font-size: 12px; font-weight: 600 }
.contact .lines div { display: flex; align-items: center; gap: 9px }
.contact .lines svg { width: 15px; height: 15px }
.contact .lines .hot { font-size: 20px; font-weight: 800; letter-spacing: .02em }

/* =====================================================================
   Print: only the A4 pages, at real size
   ===================================================================== */
@media print {
  html, body { background: #fff }
  .editor, .viewbar, .toast { display: none !important }
  .app, .app.view { display: block; height: auto }
  .stage { padding: 0; overflow: visible }
  .scale-box { width: auto !important; height: auto !important; margin: 0 }
  .scaler { position: static; transform: none !important }
  .pages { display: block }
  .pages .page { box-shadow: none }
}
