/* Self-hosted via system stack — no Google Fonts CDN (GDPR) */

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

  body {
    font-family: Inter, 'Helvetica Neue', Arial, sans-serif;
    background: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 24px;
  }

  .page {
    width: 210mm;
    height: 297mm;
    background: #ffffff;
    box-shadow: 0 4px 40px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* HEADER */
  .header {
    background: #0f172a;
    padding: 24px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }
  .header-left .logo {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
  }
  .header-left .logo span { color: #FF5E1A; }
  .logo-link { color: inherit; text-decoration: none; }
  .logo-link:hover span { text-decoration: underline; }
  .header-left h1 {
    font-size: 10.5px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 5px 0 0;
    line-height: normal;
  }
  .header-right {
    text-align: right;
    flex-shrink: 0;
    min-width: 200px;
  }
  .header-right .price {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
  }
  .header-right .price-sub {
    font-size: 11px;
    color: #FF5E1A;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
    white-space: nowrap;
  }
  .header-right .price-note {
    font-size: 8.5px;
    color: #8fa3bd;
    margin-top: 3px;
  }
  .header-right .badge {
    display: inline-block;
    background: #7A2A0B;
    color: #FFD4BC;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 6px;
    white-space: nowrap;
  }

  /* BODY */
  .body {
    display: flex;
    flex: 1;
    padding: 22px 30px;
    gap: 22px;
    overflow: hidden;
  }

  /* LEFT COLUMN */
  .col-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* PHOTO */
  .photo-block {
    background: #eef1f5;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 0 0 290px;
  }
  .photo-block img {
    height: 100%;
    max-height: 290px;
    width: auto;
    object-fit: contain;
  }
  .photo-caption {
    font-size: 8.5px;
    line-height: 1.5;
    color: #475569;
    margin: 6px 0 2px;
  }
  .photo-caption strong { color: #0f172a; }

  /* SECTION TITLE */
  .section-title {
    font-size: 9.5px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 7px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
  }

  /* SPECS TABLE */
  .specs-table {
    width: 100%;
    border-collapse: collapse;
  }
  .specs-table tr { border-bottom: 1px solid #f1f5f9; }
  .specs-table td {
    padding: 4.5px 0;
    font-size: 10px;
    line-height: 1.4;
    vertical-align: top;
  }
  .specs-table td:first-child {
    color: #64748b;
    font-weight: 600;
    width: 38%;
    padding-right: 8px;
  }
  .specs-table td:last-child {
    color: #1e293b;
    font-weight: 500;
  }

  /* PROTOCOL BADGES */
  .protocol-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .proto-badge {
    background: #FFF1EB;
    border: 1px solid #FFD4BC;
    color: #C44A0E;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3.5px 8px;
    border-radius: 4px;
  }

  /* FEATURE LIST */
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 10.5px;
    color: #334155;
    line-height: 1.45;
  }
  .feature-dot {
    width: 5px;
    height: 5px;
    background: #FF5E1A;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3.5px;
  }

  /* RIGHT COLUMN */
  .col-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* USE CASE BOX */
  .use-case-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
    flex: 1;
  }
  .use-case-item {
    display: flex;
    gap: 9px;
    margin-bottom: 10px;
    align-items: flex-start;
  }
  .use-case-item:last-child { margin-bottom: 0; }
  .use-case-num {
    width: 18px;
    height: 18px;
    background: #0f172a;
    color: white;
    font-size: 9.5px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .use-case-text strong {
    font-size: 10.5px;
    color: #1e293b;
    font-weight: 700;
    display: block;
    line-height: 1.3;
    margin-bottom: 1px;
  }
  .use-case-text span {
    font-size: 9.5px;
    color: #64748b;
    line-height: 1.45;
  }

  /* FOOTER */
  .footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 11px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }
  .footer-left {
    font-size: 9.5px;
    color: #94a3b8;
    font-weight: 600;
    line-height: 1.7;
  }
  .footer-center {
    font-size: 8.5px;
    color: #cbd5e1;
    font-weight: 500;
    text-align: center;
    line-height: 1.55;
    max-width: 170px;
  }
  .footer-right {
    text-align: right;
    font-size: 9.5px;
    color: #94a3b8;
    font-weight: 600;
    line-height: 1.7;
  }
  .footer-right a {
    color: #FF5E1A;
    text-decoration: none;
    font-weight: 700;
  }

  @page { size: A4 portrait; margin: 0; }
  @media print {
    html, body { width: 210mm; height: 297mm; overflow: hidden; background: white; padding: 0 !important; margin: 0; min-height: 0; }
    .page { box-shadow: none; width: 210mm; height: 297mm; overflow: hidden; }
  }

body { padding-bottom: 60px; }
  @media print {
    #toolbar { display: none !important; }
  }


/* Toolbar (replaces inline style on #toolbar div) */
#toolbar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0f172a; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 999; font-family: Inter, 'Helvetica Neue', Arial, sans-serif;
}
.toolbar-label {
  color: #94a3b8; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.toolbar-btn {
  background: #FF5E1A; color: #fff; border: none; cursor: pointer;
  padding: 9px 20px; border-radius: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.use-cases-col { flex: 1; display: flex; flex-direction: column; }
