  @import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@500;600;700;800&family=Onest:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600;700&display=swap');

  :root {
    --bg: #F2F4F7;
    --surface: #FFFFFF;
    --surface-alt: #EEF0F3;
    --ink: #0F2344;
    --ink-soft: #59627A;
    --ink-faint: #8891A3;
    --line: #E1E4EA;
    --line-strong: #C7CCD8;
    --accent: #FF6A12;
    --accent-hover: #E85A0E;
    --accent-ink: #FFFFFF;
    --accent-soft: #FFE8DA;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 1px 2px rgba(16,26,49,0.04), 0 10px 28px -16px rgba(16,26,49,0.18);
    --container: 1520px;
  }

  /* Light theme only — dark mode intentionally disabled */

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--surface); color: var(--ink);
    font-family: 'Onest', system-ui, sans-serif; font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img, svg { max-width: 100%; display: block; }
  a { color: inherit; }
  h1, h2, h3 { font-family: 'Golos Text', 'Onest', sans-serif; margin: 0; text-wrap: balance; color: var(--ink); }
  .mono { font-family: 'JetBrains Mono', monospace; }
  section { position: relative; }
  section[id], #quote { scroll-margin-top: 90px; }
  .shell { max-width: var(--container); margin: 0 auto; padding-inline: 24px; }
  .band { background: var(--surface); }
  .band-alt { background: var(--bg); }
  .pad { padding-block: 88px; }
  @media (max-width: 780px) { .pad { padding-block: 56px; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px;
  }
  .eyebrow::before { content: ""; width: 14px; height: 1.5px; background: var(--accent); display: inline-block; }

  .section-head { max-width: 640px; margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; line-height: 1.12; }
  .section-head p { color: var(--ink-soft); font-size: 16.5px; margin-top: 14px; max-width: 56ch; }

  /* ---------- Buttons ---------- */
  .btn {
    appearance: none; border: none; cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 15px;
    padding: 14px 24px; border-radius: 10px; transition: background .15s ease, border-color .15s ease, transform .1s ease;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--accent); color: var(--accent-ink); }
  .btn-primary:hover { background: var(--accent-hover); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-block { width: 100%; }
  .btn-sm { padding: 10px 16px; font-size: 14px; }

  /* ---------- Seam divider (packaging fold-line motif) ---------- */
  .seam { position: relative; height: 1px; background-image: linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px); background-size: 12px 1px; background-repeat: repeat-x; max-width: var(--container); margin: 0 auto; }
  .seam::before, .seam::after { content: ""; position: absolute; top: -4px; width: 9px; height: 9px; border: 1.5px solid var(--line-strong); border-radius: 1px; }
  .seam::before { left: 0; border-right: none; border-bottom: none; }
  .seam::after { right: 0; border-left: none; border-top: none; }

  /* ================= HEADER ================= */
  .site-header {
    position: sticky; top: env(safe-area-inset-top, 0px); z-index: 40;
    background: var(--surface); border-bottom: 1px solid var(--line);
  }
  .header-row { max-width: var(--container); margin: 0 auto; padding-inline: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 12px; }
  .logo { display: flex; align-items: center; gap: 13px; text-decoration: none; flex-shrink: 0; }
  .logo-mark { width: 46px; height: 40px; object-fit: contain; flex-shrink: 0; }
  .logo-word { font-family: 'Golos Text', sans-serif; font-weight: 800; font-size: 21px; letter-spacing: 0.01em; line-height: 1.1; }
  .logo-word span { display: block; font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 10.5px; color: var(--ink-faint); letter-spacing: 0.03em; text-transform: uppercase; margin-top: 3px; }

  .main-nav { display: flex; align-items: center; gap: 18px; }
  .main-nav a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); text-decoration: none; }
  .main-nav a:hover { color: var(--ink); }

  .header-right { display: flex; align-items: center; gap: 12px; }
  .header-phones { display: flex; flex-direction: column; gap: 1px; text-align: right; }
  .header-phone { font-family: 'JetBrains Mono', monospace; font-size: 13.5px; font-weight: 600; color: var(--ink); text-decoration: none; white-space: nowrap; line-height: 1.35; }
  .header-phone:hover { color: var(--accent); }
  .header-social { display: flex; align-items: center; gap: 6px; }
  .social-badge {
    display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
    font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.01em;
    color: var(--ink-soft); background: var(--surface-alt); border: 1px solid var(--line); border-radius: 7px;
    width: 30px; height: 30px; flex-shrink: 0; transition: color .15s ease, border-color .15s ease;
  }
  .social-badge.wide { width: auto; padding: 0 8px; }
  .social-badge:hover { color: var(--ink); border-color: var(--line-strong); }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4.5px 0; border-radius: 2px; }

  @media (max-width: 1350px) {
    .main-nav { position: fixed; inset: 0; top: 60px; background: var(--surface); flex-direction: column;
      align-items: flex-start; gap: 2px; padding: 18px 20px 28px; transform: translateY(-8px); opacity: 0;
      pointer-events: none; transition: opacity .18s ease, transform .18s ease; border-top: 1px solid var(--line); }
    .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 16px; }
    .header-phones, .header-social { display: none; }
    .nav-toggle { display: block; }
  }
  @media (max-width: 480px) {
    .header-right .btn-sm { padding: 10px 14px; font-size: 13.5px; }
  }

  /* ================= HERO ================= */
  .hero { position: relative; overflow: hidden; padding-block: 0; }

  .hero-photo-wrap { position: absolute; top: 0; right: 0; bottom: 0; width: 65%; z-index: 1; }
  .hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 90% 30%; display: block; }
  .hero-photo-wrap::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--surface) 0%, rgba(255,255,255,0.9) 12%, rgba(255,255,255,0.55) 26%, rgba(255,255,255,0.15) 42%, rgba(255,255,255,0) 58%);
  }
  @media (max-width: 980px) {
    .hero-photo-wrap { position: relative; width: auto; inset: auto; height: 300px; margin: 0; }
    .hero-photo-wrap::before { background: none; }
  }
  @media (max-width: 560px) { .hero-photo-wrap { height: 220px; } }

  .hero-copy-wrap { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding-inline: 24px; min-height: 520px; display: flex; align-items: center; }
  @media (max-width: 980px) { .hero-copy-wrap { min-height: auto; display: block; padding-block: 28px 0; } }
  .hero-copy { max-width: 560px; padding-block: 48px; }
  @media (max-width: 980px) { .hero-copy { max-width: none; padding-block: 0 24px; } }

  .hero h1 { font-size: clamp(2.2rem, 3.9vw, 3.4rem); font-weight: 800; line-height: 1.07; letter-spacing: -0.01em; }
  .hero h1 .accent-line { color: var(--accent); }
  .hero-sub { font-size: 18px; color: var(--ink-soft); margin-top: 18px; max-width: 46ch; }

  .hero-process { display: flex; align-items: flex-start; gap: 0; flex-wrap: nowrap; margin-top: 28px; }
  .hp-step { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 76px; text-align: center; flex-shrink: 0; }
  .hp-step svg { width: 28px; height: 28px; color: var(--ink); flex-shrink: 0; }
  .hp-step span { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); line-height: 1.3; letter-spacing: 0.01em; }
  .hp-arrow { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 12px; }
  @media (max-width: 980px) {
    .hero-process { overflow-x: auto; padding-bottom: 6px; }
  }

  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; align-items: center; }
  .btn-upload svg { width: 17px; height: 17px; }

  .hero-advantages { display: flex; flex-wrap: wrap; gap: 22px 38px; margin-top: 30px; }
  .hv-item { display: flex; align-items: center; gap: 9px; }
  .hv-item svg { width: 19px; height: 19px; color: var(--ink); flex-shrink: 0; }
  .hv-item svg .hv-accent { stroke: var(--accent); }
  .hv-item span { font-size: 13px; font-weight: 500; color: var(--ink-soft); }

  /* ================= SHOP + QUOTE LAYOUT (block under hero) ================= */
  .shop-pad { padding-block: 28px 52px; }
  @media (max-width: 780px) { .shop-pad { padding-block: 20px 40px; } }
  .shop-layout { display: grid; grid-template-columns: 1.65fr 1fr; gap: 36px; align-items: start; }
  @media (max-width: 980px) { .shop-layout { grid-template-columns: 1fr; gap: 28px; } }

  /* ================= PRODUCT CARDS ================= */
  .product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
  @media (max-width: 1180px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 620px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }
  @media (max-width: 400px) { .product-grid { grid-template-columns: 1fr; } }
  .product-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }
  .product-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-alt); }
  .product-photo img { width: 100%; height: 100%; object-fit: cover; }
  .product-card-body { padding: 12px 13px 14px; }
  .product-card-body h3 { font-size: 13.5px; font-weight: 700; margin-bottom: 4px; line-height: 1.28; }
  .product-card-body p { font-size: 12px; color: var(--ink-soft); margin: 0; line-height: 1.42; }
  .product-card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 9px; font-weight: 600; font-size: 12px; color: var(--accent); text-decoration: none; }
  .cat-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-weight: 600; font-size: 14.5px; color: var(--accent); text-decoration: none; }

  /* ================= QUOTE-BY-PHOTO FORM (light card) ================= */
  .quote-card {
    background: var(--surface-alt); border: 1px solid var(--line); border-radius: 10px; box-shadow: none;
    padding: 22px 22px;
  }
  .quote-card .section-head { margin-bottom: 14px; max-width: none; }
  .quote-card .section-head h2 { font-size: 1.18rem; }
  .quote-card .section-head p { font-size: 13.5px; margin-top: 7px; }

  .quote-fields { display: flex; flex-direction: column; gap: 10px; }
  .field label { display: block; font-size: 12px; color: var(--ink-soft); margin-bottom: 5px; font-weight: 500; }
  .field input, .field textarea {
    width: 100%; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 7px;
    padding: 9px 12px; color: var(--ink); font-family: 'Onest', sans-serif; font-size: 13.5px; outline: none;
  }
  .field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
  .field input:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
  .field-row { display: flex; gap: 9px; }
  .field-row .field { flex: 1; }
  @media (max-width: 560px) { .field-row { flex-direction: column; } }
  .form-note { font-size: 12px; color: var(--ink-faint); margin-top: 4px; }
  .form-success { display: flex; align-items: center; gap: 10px; background: var(--accent-soft); border: 1px solid var(--accent); border-radius: 8px; padding: 12px 14px; font-size: 13.5px; margin-top: 4px; }
  .form-success[hidden] { display: none; }
  .form-success svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

  .form-error-banner { display: flex; align-items: center; gap: 10px; background: #FDEDEB; border: 1px solid #E8998D; border-radius: 8px; padding: 12px 14px; font-size: 13.5px; color: #8B2E22; margin-top: 4px; }
  .form-error-banner[hidden] { display: none; }

  .field-error { display: block; color: #B3261E; font-size: 12px; margin-top: 4px; }
  .field-error:empty { display: none; }
  .fields-light .field-error { color: #FF8A75; }

  .form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

  .form-privacy { font-size: 12px; color: var(--ink-faint); margin-top: 8px; }
  .form-privacy a { color: var(--accent); text-decoration: underline; }
  .fields-light .form-privacy { color: rgba(255,255,255,0.5); }

  .dropzone-compact {
    display: flex; align-items: center; gap: 10px; border: 1.5px dashed var(--line-strong); border-radius: 7px;
    padding: 10px 12px; cursor: pointer; transition: border-color .15s ease, background .15s ease; background: var(--surface);
  }
  .dropzone-compact.drag { border-color: var(--accent); background: var(--accent-soft); }
  .dropzone-compact svg { width: 19px; height: 19px; color: var(--ink-soft); flex-shrink: 0; }
  .dropzone-compact .dz-text { display: flex; flex-direction: column; gap: 1px; overflow: hidden; }
  .dropzone-compact .dz-title { font-size: 13px; font-weight: 600; color: var(--ink); }
  .dropzone-compact .dz-sub { font-size: 11.5px; color: var(--ink-faint); }
  .dropzone-compact .dz-file { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--accent); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dropzone-compact input[type=file] { display: none; }

  /* light-panel field variant for final CTA (on dark bg further down page) */
  .fields-light .field label { color: var(--ink-soft); }
  .fields-light .field input, .fields-light .field textarea { background: var(--surface); border-color: var(--line-strong); color: var(--ink); }
  .fields-light .field input::placeholder, .fields-light .field textarea::placeholder { color: var(--ink-faint); }
  .fields-light .form-note { color: var(--ink-faint); }

  /* ================= TRUST / PRODUCTION ================= */
  .trust-layout { display: grid; grid-template-columns: 1fr; gap: 28px; }
  @media (min-width: 981px) {
    .trust-layout {
      grid-template-columns: 1.32fr 1fr;
      grid-template-areas: "photo head" "photo proofs" "photo link";
      column-gap: 52px; row-gap: 0; align-items: start;
    }
  }

  .trust-head { grid-area: head; }
  .trust-lead { font-size: 16px; color: var(--ink-soft); margin-top: 14px; max-width: 44ch; }

  .trust-photo {
    grid-area: photo; border-radius: 9px; overflow: hidden; aspect-ratio: 16/10;
    background: linear-gradient(135deg, #E8EAEF 0%, #D2D7E0 48%, #AFB8C6 100%);
  }
  @media (min-width: 981px) { .trust-photo { height: 100%; aspect-ratio: auto; align-self: stretch; } }
  .trust-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; display: block; }

  .trust-proofs { grid-area: proofs; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); margin-top: 22px; }
  @media (min-width: 981px) { .trust-proofs { margin-top: 26px; } }
  .proof { padding: 18px 18px 18px 0; border-bottom: 1px solid var(--line); }
  .proof:nth-child(odd) { border-right: 1px solid var(--line); }
  .proof:nth-child(even) { padding-left: 18px; }
  .proof-n { font-family: 'JetBrains Mono', monospace; font-size: 25px; font-weight: 700; color: var(--ink); line-height: 1.15; }
  .proof-n.text { font-family: 'Golos Text', sans-serif; font-size: 16px; }
  .proof-l { font-size: 12.5px; color: var(--ink-soft); margin-top: 5px; }

  .trust-link { grid-area: link; display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; font-weight: 600; font-size: 14.5px; color: var(--accent); text-decoration: none; }

  /* ================= PROCESS ROUTE ================= */
  .process-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 32px; margin-bottom: 36px; }
  .process-head .section-head { margin-bottom: 0; }
  .process-sub { font-size: 15px; color: var(--ink-soft); max-width: 34ch; margin: 0; padding-bottom: 3px; }

  .process-route { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }

  .p-step {
    position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line);
    border-radius: 9px; padding: 18px 15px 20px; min-height: 130px;
    transition: border-color .15s ease;
  }
  .p-step:hover { border-color: var(--line-strong); }
  .p-step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--line); }
  .p-step::after { content: ""; position: absolute; top: 0; left: 0; height: 2px; background: var(--accent); transition: background .15s ease; }
  .p-step:hover::after { background: var(--accent-hover); }
  .p-step:nth-child(1)::after { width: 14%; }
  .p-step:nth-child(2)::after { width: 29%; }
  .p-step:nth-child(3)::after { width: 43%; }
  .p-step:nth-child(4)::after { width: 57%; }
  .p-step:nth-child(5)::after { width: 71%; }
  .p-step:nth-child(6)::after { width: 86%; }
  .p-step:nth-child(7)::after { width: 100%; }

  .p-num { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 13px; color: var(--accent); display: block; }
  .p-rule { width: 20px; height: 1.5px; background: var(--line-strong); margin: 11px 0 12px; }
  .p-title { font-weight: 700; font-size: 13.5px; color: var(--ink); line-height: 1.32; }

  @media (max-width: 1180px) and (min-width: 781px) {
    .process-route { grid-template-columns: repeat(4, 1fr); }
  }

  @media (max-width: 780px) {
    .process-head { display: block; }
    .process-sub { margin-top: 10px; max-width: 46ch; }
    .process-route { display: block; }
    .p-step {
      display: flex; align-items: flex-start; gap: 14px; background: none; border: none; border-radius: 0;
      padding: 14px 0; min-height: 0;
    }
    .p-step::before { content: none; }
    .p-step::after { content: none; }
    .p-step:not(:last-child) { position: relative; }
    .p-step:not(:last-child)::before {
      content: ""; position: absolute; left: 15px; top: 34px; bottom: -14px; width: 1.5px; background: var(--line-strong);
    }
    .p-num { width: 32px; flex-shrink: 0; }
    .p-rule { display: none; }
    .p-title { padding-top: 1px; }
  }

  /* ================= DIRECTOR / HUMAN TRUST ================= */
  .director-layout { display: flex; flex-direction: column; gap: 24px; }
  .director-photo { order: 2; }
  .director-content { display: contents; }
  .director-head { order: 1; }
  .director-rest { order: 3; }

  @media (min-width: 981px) {
    .director-layout { display: grid; grid-template-columns: minmax(420px, 480px) minmax(0, 1fr); gap: 60px; align-items: start; }
    .director-photo { order: initial; }
    .director-content { display: flex; flex-direction: column; gap: 32px; }
    .director-head, .director-rest { order: initial; }
  }

  .director-lead { font-size: 16.5px; color: var(--ink-soft); margin: 14px 0 0; max-width: 50ch; line-height: 1.6; }

  .director-photo { width: 100%; max-width: 480px; aspect-ratio: 4/5; overflow: hidden; border-radius: 9px; background: var(--surface-alt); }
  .director-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }

  .director-person { margin-top: 22px; }
  @media (min-width: 981px) { .director-person { margin-top: 0; } }
  .director-name { font-size: 18.5px; font-weight: 700; color: var(--ink); }
  .director-role { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

  .director-quote {
    margin: 18px 0 0; padding: 1px 0 1px 16px; border-left: 2px solid var(--accent);
    font-size: 15.5px; color: var(--ink-soft); font-style: normal; line-height: 1.55; max-width: 520px;
  }

  .director-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-weight: 600; font-size: 14.5px; color: var(--accent); text-decoration: none; }

  /* ================= CASES ================= */
  .case-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px; align-items: stretch; }
  .case-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
  @media (max-width: 780px) {
    .case-grid { grid-template-columns: 1fr; }
    .case-stack { display: contents; }
  }

  .case-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
  .case-photo { background: linear-gradient(135deg, #E8EAEF 0%, #D2D7E0 48%, #AFB8C6 100%); overflow: hidden; }
  .case-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .case-card:not(.case-featured) .case-photo { aspect-ratio: 16/10; }
  .case-featured .case-photo { flex: 1 1 auto; min-height: 220px; }

  .case-featured .case-photo img { object-position: 46% 50%; }
  .case-stack article:nth-child(1) .case-photo img { object-position: 45% 62%; }
  .case-stack article:nth-child(2) .case-photo img { object-position: center 42%; }

  .case-body { padding: 18px 20px 20px; }
  .case-title { font-weight: 700; font-size: 16px; color: var(--ink); }
  .case-featured .case-title { font-size: 19px; }
  .case-type { font-size: 13px; color: var(--ink-soft); margin-top: 4px; font-weight: 500; }
  .case-desc { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; line-height: 1.5; }
  .case-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
  .case-chip {
    font-size: 11.5px; font-weight: 500; color: var(--ink-soft); background: var(--surface-alt);
    border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px;
  }

  /* ================= INDUSTRIES ================= */
  .industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }

  .industry-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 9px;
    padding: 20px 22px; min-height: 160px; display: flex; flex-direction: column; justify-content: space-between;
    transition: border-color .15s ease;
  }
  .industry-card:hover { border-color: var(--line-strong); }
  @media (max-width: 560px) { .industry-card { min-height: 0; padding: 18px 20px; } }

  .industry-num { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 700; color: var(--ink-faint); }
  .industry-marker { width: 22px; height: 2px; background: var(--line-strong); margin-top: 10px; position: relative; overflow: hidden; }
  .industry-marker::after { content: ""; position: absolute; inset: 0; width: 60%; background: var(--accent); transition: background .15s ease; }
  .industry-card:hover .industry-marker::after { background: var(--accent-hover); }
  .industry-name { font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1.25; margin-top: 24px; }
  @media (max-width: 560px) { .industry-name { margin-top: 16px; font-size: 17px; } }

  /* ================= CAPABILITIES ================= */
  .cap-list { display: flex; flex-wrap: wrap; gap: 12px; }
  .cap-pill { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 11px 18px 11px 12px; }
  .cap-pill svg { width: 26px; height: 26px; color: var(--ink-soft); flex-shrink: 0; }
  .cap-pill span { font-size: 14.5px; font-weight: 600; }
  .cap-foot { margin-top: 26px; font-size: 15px; color: var(--ink-soft); max-width: 62ch; }
  .cap-foot b { color: var(--ink); }

  /* ================= PRODUCTION GALLERY ================= */
  .prod-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
  @media (max-width: 900px) { .prod-layout { grid-template-columns: 1fr; gap: 28px; } }
  .prod-text p { color: var(--ink-soft); font-size: 16px; margin-top: 16px; max-width: 44ch; }
  .prod-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .prod-tile { position: relative; border-radius: 9px; overflow: hidden; background: var(--surface-alt); aspect-ratio: 1/1; }
  .prod-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .prod-tile-main { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  @media (max-width: 560px) { .prod-gallery { grid-template-columns: repeat(2, 1fr); } .prod-tile-main { grid-column: span 2; } }

  .prod-tile-heidelberg img { object-position: 50% 48%; }
  .prod-tile-control img { object-position: 65% 40%; }
  .prod-tile-process img { object-position: 45% 40%; }
  .prod-tile-diecut img { object-position: 50% 42%; }
  .prod-tile-baosika img { object-position: 50% 50%; }
  .prod-tile-ctp img { object-position: 55% 35%; }
  .prod-tile-stock img { object-position: 50% 45%; }

  /* ================= CLIENTS ================= */
  .clients-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  @media (max-width: 780px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 480px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
  .client-slot {
    aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: 9px; padding: 18px 22px;
  }
  .client-slot img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

  /* ================= HOW TO START ================= */
  .steps-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px 20px; position: relative; }
  @media (max-width: 1099px) and (min-width: 700px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 699px) { .steps-row { grid-template-columns: 1fr; gap: 0; } }

  .step-item { padding-right: 24px; position: relative; }
  @media (min-width: 1100px) {
    .step-item:not(:last-child)::after {
      content: ""; position: absolute; top: 22px; left: 46px; right: 0; border-top: 1.5px dashed var(--line-strong);
    }
  }
  @media (max-width: 699px) {
    .step-item { padding-right: 0; padding-bottom: 26px; display: flex; gap: 16px; align-items: flex-start; }
    .step-item:not(:last-child)::before {
      content: ""; position: absolute; left: 20px; top: 44px; bottom: 0; width: 1.5px; background: var(--line-strong);
    }
    .step-item .step-copy { padding-top: 2px; }
    .step-item h3 { margin-top: 0; }
  }

  .step-num { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 15px; color: var(--surface);
    width: 42px; height: 42px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; flex-shrink: 0; }
  .step-item h3 { font-size: 15.5px; font-weight: 700; margin-top: 16px; }
  .step-item p { font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; }

  /* ================= FINAL CTA ================= */
  .final-cta { background: var(--ink); border-radius: 22px; padding: 56px; color: #fff; }
  @media (max-width: 780px) { .final-cta { padding: 30px 22px; border-radius: 18px; } }
  .final-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
  @media (max-width: 900px) { .final-grid { grid-template-columns: 1fr; gap: 30px; } }
  .final-cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
  .final-cta > .shell > p, .final-copy p { color: rgba(255,255,255,0.62); font-size: 16px; margin-top: 14px; max-width: 42ch; }
  .final-contacts { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
  .final-contacts a { color: #fff; font-weight: 600; font-size: 16px; text-decoration: none; display: flex; align-items: center; gap: 10px; }
  .final-contacts svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
  .file-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; padding: 11px 14px; font-size: 13.5px; color: rgba(255,255,255,0.75); cursor: pointer; width: 100%; }
  .file-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
  .file-btn input { display: none; }

  .final-info { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
  .final-info-row { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.5; }
  .final-info-row svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

  .final-perks { display: flex; flex-direction: column; gap: 7px; margin: 18px 0 0; padding: 0; list-style: none; }
  .final-perks li { position: relative; padding-left: 16px; color: rgba(255,255,255,0.6); font-size: 13.5px; }
  .final-perks li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

  .final-map { margin-top: 24px; }
  .map-embed { height: 340px; border-radius: 9px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
  .map-embed iframe { display: block; border: 0; }
  @media (max-width: 780px) { .map-embed { height: 300px; } }
  .map-caption { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 10px; }
  .map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 13.5px; font-weight: 600; color: var(--accent); text-decoration: none; }

  /* ================= FOOTER ================= */
  .site-footer { padding-block: 52px 34px; }
  .footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 32px; }
  @media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); margin-bottom: 14px; font-weight: 700; }
  .footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--ink-soft); text-decoration: none; margin-bottom: 9px; }
  .footer-col a:hover { color: var(--ink); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-faint); }
  .legal-details { font-size: 12.5px; color: var(--ink-faint); }
  .legal-details summary { cursor: pointer; color: var(--ink-soft); font-weight: 500; }
  .legal-details p { margin: 8px 0 0; }
  /* MOBILE FIX */
@media (max-width: 560px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .shell,
  .header-row,
  .hero-copy-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-row {
    gap: 8px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 38px;
    height: 34px;
  }

  .logo-word {
    font-size: 17px;
  }

  .logo-word span {
    display: none;
  }

  .header-right .btn-sm {
    display: none;
  }

  .nav-toggle {
    flex-shrink: 0;
  }

  .hero-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 8px;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .hp-step {
    width: auto;
    min-width: 0;
  }

  .hp-step svg {
    width: 26px;
    height: 26px;
  }

  .hp-step span {
    font-size: 11px;
  }

  .hp-arrow {
    display: none;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-advantages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* MOBILE OVERFLOW FIX */
@media (max-width: 560px) {

  .hero h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .clients-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-slot {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .client-slot img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    object-fit: contain;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.82rem;
  }
}
/* MOBILE TRUST FIX */
@media (max-width: 980px) {

  .trust-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .trust-head,
  .trust-proofs,
  .trust-photo,
  .trust-link {
    grid-area: auto;
  }

  .trust-head {
    order: 1;
  }

  .trust-proofs {
    order: 2;
    margin-top: 0;
  }

  .trust-photo {
    order: 3;
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 10;
  }

  .trust-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .trust-link {
    order: 4;
    margin-top: 0;
    align-self: flex-start;
  }

  .seam {
    width: calc(100% - 32px);
  }
}
