/**
 * Module CSS: 20-highlight-band-fills-width.css
 * Trích nguyên văn dòng 946-990 của pctech-homepage.css gốc.
 * Không đổi nội dung — chỉ tách file theo đúng marker sẵn có trong code gốc.
 */
    /* ── Highlight band (fills width) ── */
    .highlight-band {
      background: linear-gradient(90deg, var(--blue-deeper), var(--blue-dark), var(--blue-deeper));
      padding: 32px 0;
      overflow: hidden;
      position: relative;
    }
    .highlight-band::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
      animation: bandShine 4s infinite;
    }
    @keyframes bandShine {
      0% { left: -100%; }
      100% { left: 200%; }
    }
    .highlight-band-inner {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
      font-weight: 600;
      font-size: 0.92rem;
    }
    .highlight-item .hi-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(232,135,10,0.2);
      border: 1px solid rgba(232,135,10,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

