/* Start custom CSS */<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue:      #1a4681;
    --blue-mid:  #1e5799;
    --dark:      #3A3A3A;
    --mid:       #6a6a6a;
    --light:     #f4f5f7;
    --white:     #ffffff;
    --rule:      #e0e2e6;
    --accent:    #1a4681;
  }

  body {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ── HEADER ── */
  .header {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-logo svg { height: 28px; width: auto; }

  .header-right {
    text-align: right;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
  }
  .header-right span { display: block; color: var(--blue); font-size: 13px; }

  /* ── HERO ── */
  .hero {
    background: var(--dark);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    min-height: 460px;
  }

  .hero-content { padding: 64px 48px; }

  .hero-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.5;
    margin-bottom: 16px;
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }

  .hero-title span {
    color: var(--blue);
    display: block;
  }

  .hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    opacity: 0.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 40px;
  }

  .hero-tagline {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    opacity: 0.75;
    max-width: 360px;
    line-height: 1.7;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  /* Machine SVG illustration placeholder */
  .machine-illustration {
    width: 100%;
    max-width: 520px;
    height: 300px;
    background: linear-gradient(135deg, rgba(26,70,129,0.15) 0%, rgba(26,70,129,0.05) 100%);
    border-top: 3px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* ── BLUE ACCENT BAR ── */
  .accent-bar {
    height: 3px;
    background: var(--blue);
    width: 100%;
  }

  /* ── KEY SPECS BAND ── */
  .specs-band {
    background: var(--blue);
    padding: 32px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .spec-item {
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.2);
    text-align: center;
  }
  .spec-item:first-child { padding-left: 0; }
  .spec-item:last-child { border-right: none; }

  .spec-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .spec-unit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-left: 4px;
  }
  .spec-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
  }

  /* ── SECTION LAYOUT ── */
  .section {
    padding: 64px 48px;
  }
  .section--light { background: var(--light); }
  .section--dark { background: var(--dark); }
  .section--white { background: var(--white); }

  .section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
  }
  .section--dark .section-header { border-bottom-color: rgba(255,255,255,0.1); }

  .section-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--blue);
    text-transform: uppercase;
  }
  .section--dark .section-num { color: rgba(255,255,255,0.4); }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dark);
  }
  .section--dark .section-title { color: var(--white); }

  /* ── TECH SPECS TABLE ── */
  .specs-table {
    width: 100%;
    border-collapse: collapse;
  }
  .specs-table tr { border-bottom: 1px solid var(--rule); }
  .specs-table tr:last-child { border-bottom: none; }

  .specs-table td {
    padding: 14px 0;
    vertical-align: top;
  }
  .specs-table td:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    width: 220px;
    padding-right: 24px;
  }
  .specs-table td:nth-child(2),
  .specs-table td:nth-child(3) {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    width: 200px;
  }
  .specs-table td:last-child {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
  }

  .specs-model-header {
    display: grid;
    grid-template-columns: 220px 200px 200px 1fr;
    gap: 0;
    padding: 8px 0 16px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--blue);
  }
  .specs-model-header span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
  }
  .specs-model-header span:first-child { color: var(--mid); }

  /* ── MODULAR SECTIONS GRID ── */
  .modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
  }

  .module-card {
    background: var(--white);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
  }
  .section--light .module-card { background: var(--light); }
  .section--dark .module-card {
    background: rgba(0,0,0,0.25);
    border: none;
  }

  .module-letter {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    opacity: 0.18;
    width: 40px;
  }
  .section--dark .module-letter {
    color: #6ea8e8;
    opacity: 0.55;
  }

  .module-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
  }
  .section--dark .module-title {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,0.12);
  }

  .module-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .module-list li {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    padding-left: 14px;
    position: relative;
  }
  .section--dark .module-list li {
    color: rgba(255,255,255,0.72);
  }
  .module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 1px;
    background: var(--blue);
  }
  .section--dark .module-list li::before {
    background: #6ea8e8;
  }

  /* ── BOX TYPES SECTION ── */
  .box-types-intro {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .box-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
  }

  .box-type-item {
    background: rgba(255,255,255,0.04);
    padding: 28px 24px;
    border-top: 2px solid rgba(26,70,129,0.6);
  }

  .box-type-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    opacity: 0.5;
  }

  .box-type-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
  }

  .box-type-desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
  }

  /* ── FEATURES LIST ── */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .feature {
    padding-top: 20px;
    border-top: 3px solid var(--rule);
    position: relative;
  }

  .feature::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--blue);
  }

  .feature-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .feature-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.6;
  }

  /* ── CONTACT FOOTER ── */
  .footer-contact {
    background: var(--dark);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
    border-top: 3px solid var(--blue);
  }

  .footer-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
  }

  .footer-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .footer-contacts {
    display: flex;
    gap: 48px;
  }

  .contact-item {}
  .contact-item dt {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
  }
  .contact-item dd {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
  }
  .contact-item dd a {
    color: var(--white);
    text-decoration: none;
  }

  .footer-logo-wrap {
    text-align: right;
  }
  .footer-logo-wrap svg {
    height: 24px;
    width: auto;
    opacity: 0.6;
  }
  .footer-legal {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    margin-top: 16px;
    max-width: 280px;
    text-align: right;
    line-height: 1.5;
  }

  /* Machine SVG schematic */
  .machine-schematic {
    width: 100%;
    background: rgba(26,70,129,0.06);
    border: 1px solid rgba(26,70,129,0.12);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .machine-label-row {
    display: flex;
    gap: 2px;
    width: 100%;
    align-items: stretch;
  }

  .machine-segment {
    flex: 1;
    background: rgba(26,70,129,0.08);
    border-top: 2px solid var(--blue);
    padding: 12px 8px 10px;
    text-align: center;
  }

  .machine-segment-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
  }
  .machine-segment-sub {
    font-size: 10px;
    font-weight: 300;
    color: var(--mid);
    margin-top: 2px;
  }

  .dimension-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--rule);
    margin-top: 4px;
  }
  .dimension-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
  }
  .dimension-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
  }

  /* Models comparison */
  .models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--rule);
    margin-top: 40px;
  }
  .model-card {
    background: var(--white);
    padding: 36px 40px;
  }
  .model-badge {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(26,70,129,0.08);
    padding: 4px 10px;
    margin-bottom: 20px;
  }
  .model-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
  }
  .model-width {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    margin-bottom: 24px;
  }
  .model-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 13px;
  }
  .model-spec-row:last-child { border-bottom: none; }
  .model-spec-row dt {
    font-weight: 300;
    color: var(--mid);
  }
  .model-spec-row dd {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
  }

  @media print {
    body { font-size: 12px; }
    .hero-title { font-size: 56px; }
    .specs-band { padding: 24px 36px; }
    .section { padding: 48px 36px; }
  }
</style>/* End custom CSS */